| @@ -1,4 +1,5 @@ | ||
| 1 | +/*! elementor - v3.31.0 - 08-09-2025 */ | |
| 1 | 2 | .elementor-control-unit-1 { |
| 2 | 3 | width: 27px; |
| 3 | 4 | } |
| 4 | 5 | |
| @@ -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 | */ |
| @@ -787,49 +787,60 @@ | ||
| 787 | 787 | } |
| 788 | 788 | |
| 789 | 789 | .elementor-panel :where(#elementor-panel-state-loading, |
| 790 | 790 | #elementor-panel-header-wrapper, |
| 791 | -#elementor-panel-content-wrapper) h1, | |
| 791 | +#elementor-panel-content-wrapper, | |
| 792 | +#elementor-panel-footer) h1, | |
| 792 | 793 | .elementor-panel :where(#elementor-panel-state-loading, |
| 793 | 794 | #elementor-panel-header-wrapper, |
| 794 | -#elementor-panel-content-wrapper) h2, | |
| 795 | +#elementor-panel-content-wrapper, | |
| 796 | +#elementor-panel-footer) h2, | |
| 795 | 797 | .elementor-panel :where(#elementor-panel-state-loading, |
| 796 | 798 | #elementor-panel-header-wrapper, |
| 797 | -#elementor-panel-content-wrapper) h3, | |
| 799 | +#elementor-panel-content-wrapper, | |
| 800 | +#elementor-panel-footer) h3, | |
| 798 | 801 | .elementor-panel :where(#elementor-panel-state-loading, |
| 799 | 802 | #elementor-panel-header-wrapper, |
| 800 | -#elementor-panel-content-wrapper) h4, | |
| 803 | +#elementor-panel-content-wrapper, | |
| 804 | +#elementor-panel-footer) h4, | |
| 801 | 805 | .elementor-panel :where(#elementor-panel-state-loading, |
| 802 | 806 | #elementor-panel-header-wrapper, |
| 803 | -#elementor-panel-content-wrapper) h5, | |
| 807 | +#elementor-panel-content-wrapper, | |
| 808 | +#elementor-panel-footer) h5, | |
| 804 | 809 | .elementor-panel :where(#elementor-panel-state-loading, |
| 805 | 810 | #elementor-panel-header-wrapper, |
| 806 | -#elementor-panel-content-wrapper) h6 { | |
| 811 | +#elementor-panel-content-wrapper, | |
| 812 | +#elementor-panel-footer) h6 { | |
| 807 | 813 | font-size: 100%; |
| 808 | 814 | font-weight: normal; |
| 809 | 815 | } |
| 810 | 816 | .elementor-panel :where(#elementor-panel-state-loading, |
| 811 | 817 | #elementor-panel-header-wrapper, |
| 812 | -#elementor-panel-content-wrapper) abbr, | |
| 818 | +#elementor-panel-content-wrapper, | |
| 819 | +#elementor-panel-footer) abbr, | |
| 813 | 820 | .elementor-panel :where(#elementor-panel-state-loading, |
| 814 | 821 | #elementor-panel-header-wrapper, |
| 815 | -#elementor-panel-content-wrapper) acronym { | |
| 822 | +#elementor-panel-content-wrapper, | |
| 823 | +#elementor-panel-footer) acronym { | |
| 816 | 824 | border: 0; |
| 817 | 825 | font-variant: normal; |
| 818 | 826 | } |
| 819 | 827 | .elementor-panel :where(#elementor-panel-state-loading, |
| 820 | 828 | #elementor-panel-header-wrapper, |
| 821 | -#elementor-panel-content-wrapper) sup { | |
| 829 | +#elementor-panel-content-wrapper, | |
| 830 | +#elementor-panel-footer) sup { | |
| 822 | 831 | vertical-align: text-top; |
| 823 | 832 | } |
| 824 | 833 | .elementor-panel :where(#elementor-panel-state-loading, |
| 825 | 834 | #elementor-panel-header-wrapper, |
| 826 | -#elementor-panel-content-wrapper) sub { | |
| 835 | +#elementor-panel-content-wrapper, | |
| 836 | +#elementor-panel-footer) sub { | |
| 827 | 837 | vertical-align: text-bottom; |
| 828 | 838 | } |
| 829 | 839 | .elementor-panel :where(#elementor-panel-state-loading, |
| 830 | 840 | #elementor-panel-header-wrapper, |
| 831 | -#elementor-panel-content-wrapper) img { | |
| 841 | +#elementor-panel-content-wrapper, | |
| 842 | +#elementor-panel-footer) img { | |
| 832 | 843 | max-width: 100%; |
| 833 | 844 | height: auto; |
| 834 | 845 | border: 0; |
| 835 | 846 | } |
| @@ -834,9 +845,10 @@ | ||
| 834 | 845 | border: 0; |
| 835 | 846 | } |
| 836 | 847 | .elementor-panel :where(#elementor-panel-state-loading, |
| 837 | 848 | #elementor-panel-header-wrapper, |
| 838 | -#elementor-panel-content-wrapper) :focus { | |
| 849 | +#elementor-panel-content-wrapper, | |
| 850 | +#elementor-panel-footer) :focus { | |
| 839 | 851 | outline: 0; |
| 840 | 852 | } |
| 841 | 853 | .elementor-panel .elementor-panel-box-content { |
| 842 | 854 | padding: 20px 20px 10px; |
| @@ -888,9 +900,10 @@ | ||
| 888 | 900 | display: none; |
| 889 | 901 | position: absolute; |
| 890 | 902 | box-shadow: var(--e-a-popover-shadow); |
| 891 | 903 | border-radius: var(--e-a-border-radius); |
| 892 | - inset-inline: 0; | |
| 904 | + left: 0; | |
| 905 | + right: 0; | |
| 893 | 906 | margin: -4px auto 5px; |
| 894 | 907 | padding-block-start: 15px; |
| 895 | 908 | width: 90%; |
| 896 | 909 | z-index: 10000; |
| @@ -1188,8 +1201,135 @@ | ||
| 1188 | 1201 | inset-inline-end: 0; |
| 1189 | 1202 | border-radius: 50%; |
| 1190 | 1203 | z-index: -1; |
| 1191 | 1204 | } |
| 1205 | +.elementor-panel #elementor-panel-footer { | |
| 1206 | + position: relative; | |
| 1207 | + height: 40px; | |
| 1208 | + background-color: var(--e-a-dark-bg); | |
| 1209 | + color: var(--e-a-dark-color-txt); | |
| 1210 | +} | |
| 1211 | +.elementor-panel #elementor-panel-footer-tools { | |
| 1212 | + display: flex; | |
| 1213 | + justify-content: space-between; | |
| 1214 | + height: 100%; | |
| 1215 | +} | |
| 1216 | +.elementor-panel .elementor-panel-footer-tool { | |
| 1217 | + display: flex; | |
| 1218 | + align-items: center; | |
| 1219 | + justify-content: center; | |
| 1220 | + width: 15%; | |
| 1221 | + cursor: pointer; | |
| 1222 | + transition: var(--e-a-transition-hover); | |
| 1223 | + border: 0; | |
| 1224 | + color: currentColor; | |
| 1225 | + background-color: transparent; | |
| 1226 | +} | |
| 1227 | +.elementor-panel .elementor-panel-footer-tool i { | |
| 1228 | + font-size: 15px; | |
| 1229 | +} | |
| 1230 | +.elementor-panel .elementor-panel-footer-tool #elementor-panel-saver-button-save-options i.eicon-chevron-right { | |
| 1231 | + margin: auto; | |
| 1232 | + transform: rotate(270deg); | |
| 1233 | +} | |
| 1234 | +.elementor-panel .elementor-panel-footer-tool #elementor-panel-saver-button-save-options.elementor-disabled { | |
| 1235 | + cursor: inherit; | |
| 1236 | +} | |
| 1237 | +.elementor-panel .elementor-panel-footer-tool:not(.e-open):hover, .elementor-panel .elementor-panel-footer-tool:not(.e-open):focus { | |
| 1238 | + color: var(--e-a-dark-color-txt-hover); | |
| 1239 | +} | |
| 1240 | +.elementor-panel .elementor-panel-footer-tool:not(.e-open) .elementor-panel-footer-sub-menu-wrapper { | |
| 1241 | + display: none; | |
| 1242 | +} | |
| 1243 | +.elementor-panel #elementor-panel-footer-saver-publish { | |
| 1244 | + width: 30%; | |
| 1245 | + margin-inline-start: auto; | |
| 1246 | +} | |
| 1247 | +.elementor-panel #elementor-panel-footer-saver-publish .elementor-button-state i { | |
| 1248 | + margin-inline-end: 0; | |
| 1249 | +} | |
| 1250 | +.elementor-panel #elementor-panel-footer-saver-publish .elementor-button-state #elementor-panel-saver-button-publish-label { | |
| 1251 | + display: none; | |
| 1252 | +} | |
| 1253 | +.elementor-panel #elementor-panel-footer-saver-options { | |
| 1254 | + width: 10%; | |
| 1255 | +} | |
| 1256 | +.elementor-panel #elementor-panel-footer-saver-options .elementor-last-edited-wrapper { | |
| 1257 | + font-size: 11px; | |
| 1258 | + font-style: italic; | |
| 1259 | + padding: 5px 0 15px; | |
| 1260 | +} | |
| 1261 | +.elementor-panel #elementor-panel-footer-saver-options .elementor-last-edited-wrapper:not(.elementor-state-active) .elementor-state-icon { | |
| 1262 | + display: none; | |
| 1263 | +} | |
| 1264 | +.elementor-panel #elementor-panel-footer-saver-options .elementor-last-edited-wrapper time { | |
| 1265 | + border-block-end: 1px dotted transparent; | |
| 1266 | + transition: all ease-in-out 0.3s; | |
| 1267 | + cursor: pointer; | |
| 1268 | +} | |
| 1269 | +.elementor-panel #elementor-panel-footer-saver-options .elementor-last-edited-wrapper time:hover { | |
| 1270 | + border-block-end-color: inherit; | |
| 1271 | +} | |
| 1272 | +.elementor-panel #elementor-panel-footer-saver-options.e-open i.eicon-chevron-right { | |
| 1273 | + transform: rotate(90deg); | |
| 1274 | +} | |
| 1275 | +.elementor-panel #elementor-panel-saver-button-publish, .elementor-panel #elementor-panel-saver-button-save-options { | |
| 1276 | + padding: 0; | |
| 1277 | + font-size: 11px; | |
| 1278 | + height: 100%; | |
| 1279 | + width: 100%; | |
| 1280 | + border-radius: 0; | |
| 1281 | +} | |
| 1282 | +.elementor-panel #elementor-panel-saver-button-publish.elementor-disabled, .elementor-panel #elementor-panel-saver-button-save-options.elementor-disabled { | |
| 1283 | + background-color: #1f2124; | |
| 1284 | + color: #9DA5AE; | |
| 1285 | +} | |
| 1286 | +.elementor-panel #elementor-panel-saver-button-publish:not(.elementor-disabled) { | |
| 1287 | + border-inline-end: 1px solid #F0ABFC; | |
| 1288 | +} | |
| 1289 | +.elementor-panel #elementor-panel-saver-button-publish.elementor-disabled { | |
| 1290 | + border-inline-end: 1px solid #3f444b; | |
| 1291 | +} | |
| 1292 | +.elementor-panel .elementor-panel-footer-sub-menu-wrapper { | |
| 1293 | + position: absolute; | |
| 1294 | + bottom: 100%; | |
| 1295 | + left: 0; | |
| 1296 | + width: 100%; | |
| 1297 | + background-color: #1f2124; | |
| 1298 | + padding: 10px; | |
| 1299 | + box-shadow: -2px -5px 8px rgba(0, 0, 0, 0.1); | |
| 1300 | + cursor: default; | |
| 1301 | + z-index: 10000; | |
| 1302 | +} | |
| 1303 | +.elementor-panel .elementor-panel-footer-sub-menu { | |
| 1304 | + border-radius: var(--e-border-radius); | |
| 1305 | + overflow: hidden; | |
| 1306 | + border: 1px solid #3f444b; | |
| 1307 | +} | |
| 1308 | +.elementor-panel .elementor-panel-footer-sub-menu-item { | |
| 1309 | + display: flex; | |
| 1310 | + height: 40px; | |
| 1311 | + color: #D5D8DC; | |
| 1312 | + align-items: center; | |
| 1313 | + -moz-column-gap: 10px; | |
| 1314 | + column-gap: 10px; | |
| 1315 | + padding: 0 20px; | |
| 1316 | + transition: var(--e-a-transition-hover); | |
| 1317 | + cursor: pointer; | |
| 1318 | +} | |
| 1319 | +.elementor-panel .elementor-panel-footer-sub-menu-item.elementor-disabled { | |
| 1320 | + cursor: default; | |
| 1321 | + color: #69727D; | |
| 1322 | +} | |
| 1323 | +.elementor-panel .elementor-panel-footer-sub-menu-item:not(:last-child) { | |
| 1324 | + border-block-end: 1px solid #3f444b; | |
| 1325 | +} | |
| 1326 | +.elementor-panel .elementor-panel-footer-sub-menu-item:hover { | |
| 1327 | + background-color: rgba(255, 255, 255, 0.1); | |
| 1328 | +} | |
| 1329 | +.elementor-panel .elementor-panel-footer-sub-menu-item.active { | |
| 1330 | + background-color: rgba(255, 255, 255, 0.2); | |
| 1331 | +} | |
| 1192 | 1332 | |
| 1193 | 1333 | #elementor-panel-elements-navigation .elementor-panel-navigation-tab { |
| 1194 | 1334 | text-align: center; |
| 1195 | 1335 | padding: 10px 0; |
| @@ -1220,17 +1360,13 @@ | ||
| 1220 | 1360 | |
| 1221 | 1361 | #elementor-panel-elements-search-area { |
| 1222 | 1362 | background-color: var(--e-a-bg-default); |
| 1223 | 1363 | position: sticky; |
| 1224 | - inset-block-start: 0; | |
| 1364 | + top: 0; | |
| 1225 | 1365 | padding: 15px; |
| 1226 | 1366 | z-index: 1; |
| 1227 | 1367 | } |
| 1228 | 1368 | |
| 1229 | -#elementor-panel-elements-search-area:empty { | |
| 1230 | - display: none; | |
| 1231 | -} | |
| 1232 | - | |
| 1233 | 1369 | #elementor-panel-elements-search-wrapper { |
| 1234 | 1370 | position: relative; |
| 1235 | 1371 | } |
| 1236 | 1372 | |
| @@ -1288,27 +1424,14 @@ | ||
| 1288 | 1424 | -webkit-user-select: none; |
| 1289 | 1425 | -moz-user-select: none; |
| 1290 | 1426 | user-select: none; |
| 1291 | 1427 | } |
| 1292 | -.elementor-panel .elementor-element .eicon-atomic, | |
| 1293 | -.elementor-panel .elementor-element .e-widget-new-badge { | |
| 1428 | +.elementor-panel .elementor-element .eicon-atomic { | |
| 1294 | 1429 | position: absolute; |
| 1295 | - inset-block-start: 4px; | |
| 1296 | - inset-inline-end: 6px; | |
| 1297 | -} | |
| 1298 | -.elementor-panel .elementor-element .eicon-atomic { | |
| 1430 | + inset-block-start: 5px; | |
| 1431 | + inset-inline-end: 5px; | |
| 1299 | 1432 | color: var(--e-a-color-txt); |
| 1300 | 1433 | } |
| 1301 | -.elementor-panel .elementor-element .e-widget-new-badge { | |
| 1302 | - border-radius: 4px; | |
| 1303 | - background-color: #EBF2FE; | |
| 1304 | - color: var(--e-a-color-info); | |
| 1305 | - padding: 2px 4px; | |
| 1306 | - font-size: 10px; | |
| 1307 | - font-weight: 500; | |
| 1308 | - line-height: 1.4; | |
| 1309 | - pointer-events: none; | |
| 1310 | -} | |
| 1311 | 1434 | .elementor-panel .elementor-element:hover, .elementor-panel .elementor-element:focus { |
| 1312 | 1435 | background-color: var(--e-a-bg-hover); |
| 1313 | 1436 | border-color: var(--e-a-border-color-bold); |
| 1314 | 1437 | } |
| @@ -1445,80 +1568,8 @@ | ||
| 1445 | 1568 | .dialog-tooltip-widget .dialog-tooltip-button::-moz-focus-inner { |
| 1446 | 1569 | border: 0; |
| 1447 | 1570 | } |
| 1448 | 1571 | |
| 1449 | -#elementor-panel-elements-widget-creation-area:empty { | |
| 1450 | - display: none; | |
| 1451 | -} | |
| 1452 | - | |
| 1453 | -.elementor-panel-elements-widget-creation { | |
| 1454 | - text-align: center; | |
| 1455 | - padding: 30px 20px; | |
| 1456 | -} | |
| 1457 | -.elementor-panel-elements-widget-creation__title { | |
| 1458 | - font-size: 14px; | |
| 1459 | - font-weight: bold; | |
| 1460 | - line-height: 1.4; | |
| 1461 | - color: var(--e-a-color-txt); | |
| 1462 | -} | |
| 1463 | -.elementor-panel-elements-widget-creation__message { | |
| 1464 | - margin-block-start: 8px; | |
| 1465 | - font-size: 13px; | |
| 1466 | - line-height: 1.6; | |
| 1467 | - color: var(--e-a-color-txt-muted); | |
| 1468 | -} | |
| 1469 | -.elementor-panel-elements-widget-creation__cta { | |
| 1470 | - display: inline-flex; | |
| 1471 | - align-items: center; | |
| 1472 | - gap: 6px; | |
| 1473 | - margin-block-start: 16px; | |
| 1474 | - padding: 0; | |
| 1475 | - border: none; | |
| 1476 | - background: none; | |
| 1477 | - color: #C00BB9; | |
| 1478 | - font-size: 14px; | |
| 1479 | - font-weight: 500; | |
| 1480 | - cursor: pointer; | |
| 1481 | - font-family: var(--e-a-font-family); | |
| 1482 | -} | |
| 1483 | -.elementor-panel-elements-widget-creation__cta i { | |
| 1484 | - font-size: 16px; | |
| 1485 | -} | |
| 1486 | -.elementor-panel-elements-widget-creation__cta:hover { | |
| 1487 | - opacity: 0.8; | |
| 1488 | -} | |
| 1489 | -.elementor-panel-elements-widget-creation--search-footer { | |
| 1490 | - border-block-start: var(--e-a-border); | |
| 1491 | -} | |
| 1492 | - | |
| 1493 | -.elementor-panel-category-custom-widgets-empty { | |
| 1494 | - grid-column: 1/-1; | |
| 1495 | - width: 100%; | |
| 1496 | - padding: 0 16px 16px; | |
| 1497 | -} | |
| 1498 | -.elementor-panel-category-custom-widgets-empty__message { | |
| 1499 | - margin: 0; | |
| 1500 | - font-size: 12px; | |
| 1501 | - line-height: 1.6; | |
| 1502 | - color: var(--e-a-color-txt-muted); | |
| 1503 | -} | |
| 1504 | - | |
| 1505 | -.elementor-panel-heading.elementor-panel-category-title .elementor-panel-custom-widgets__cta--heading { | |
| 1506 | - margin-inline-start: auto; | |
| 1507 | - padding: 4px 10px; | |
| 1508 | - border: none; | |
| 1509 | - background: none; | |
| 1510 | - color: #C00BB9; | |
| 1511 | - font-size: 12px; | |
| 1512 | - font-weight: 500; | |
| 1513 | - cursor: pointer; | |
| 1514 | - font-family: var(--e-a-font-family); | |
| 1515 | - flex-shrink: 0; | |
| 1516 | -} | |
| 1517 | -.elementor-panel-heading.elementor-panel-category-title .elementor-panel-custom-widgets__cta--heading:hover { | |
| 1518 | - opacity: 0.8; | |
| 1519 | -} | |
| 1520 | - | |
| 1521 | 1572 | #elementor-panel-inner { |
| 1522 | 1573 | position: relative; |
| 1523 | 1574 | height: 100%; |
| 1524 | 1575 | display: flex; |
| @@ -1544,54 +1595,18 @@ | ||
| 1544 | 1595 | #elementor-panel-get-pro-elements .elementor-nerd-box-icon { |
| 1545 | 1596 | margin-block-start: 20px; |
| 1546 | 1597 | } |
| 1547 | 1598 | |
| 1548 | -#elementor-panel-content-wrapper:has(> #elementor-panel-page-editor) { | |
| 1549 | - display: flex; | |
| 1550 | - flex-direction: column; | |
| 1551 | -} | |
| 1552 | -#elementor-panel-content-wrapper:has(> #elementor-panel-page-editor) #elementor-panel-page-editor { | |
| 1553 | - display: flex; | |
| 1554 | - flex-direction: column; | |
| 1555 | - flex: 1; | |
| 1556 | - min-height: 0; | |
| 1557 | -} | |
| 1558 | -#elementor-panel-content-wrapper:has(> #elementor-panel-page-editor) .elementor-panel-editor-sticky-promotion { | |
| 1559 | - position: sticky; | |
| 1560 | - inset-block-end: 0; | |
| 1561 | - margin-block-start: auto; | |
| 1562 | -} | |
| 1563 | -#elementor-panel-content-wrapper:has(> #elementor-panel-page-editor) .elementor-panel-editor-sticky-promotion .elementor-get-pro-sticky-message { | |
| 1564 | - margin-block-start: 0; | |
| 1565 | -} | |
| 1566 | - | |
| 1567 | 1599 | #elementor-panel-get-pro-elements-sticky { |
| 1568 | 1600 | position: sticky; |
| 1569 | - inset-block-end: 0; | |
| 1570 | - margin-block-end: -10px; | |
| 1571 | -} | |
| 1572 | -#elementor-panel-get-pro-elements-sticky .elementor-get-pro-sticky-message { | |
| 1573 | - margin-block-start: -14px; | |
| 1574 | -} | |
| 1575 | - | |
| 1576 | -#elementor-panel-page-elements:has(> #elementor-panel-get-pro-elements-sticky) { | |
| 1577 | - display: flex; | |
| 1578 | - flex-direction: column; | |
| 1579 | - min-height: 100%; | |
| 1580 | -} | |
| 1581 | -#elementor-panel-page-elements:has(> #elementor-panel-get-pro-elements-sticky) > #elementor-panel-get-pro-elements-sticky { | |
| 1582 | - margin-block-start: auto; | |
| 1583 | -} | |
| 1584 | - | |
| 1585 | -#elementor-panel-get-pro-elements-sticky, | |
| 1586 | -.elementor-panel-editor-sticky-promotion { | |
| 1601 | + bottom: 0; | |
| 1587 | 1602 | font-size: 14px; |
| 1588 | 1603 | font-weight: 400; |
| 1589 | 1604 | line-height: 1.6; |
| 1590 | - background-color: var(--e-a-color-white); | |
| 1605 | + margin-block-end: -10px; | |
| 1591 | 1606 | } |
| 1592 | -#elementor-panel-get-pro-elements-sticky .elementor-get-pro-sticky-message, | |
| 1593 | -.elementor-panel-editor-sticky-promotion .elementor-get-pro-sticky-message { | |
| 1607 | +#elementor-panel-get-pro-elements-sticky .elementor-get-pro-sticky-message { | |
| 1608 | + margin-top: -14px; | |
| 1594 | 1609 | min-height: 40px; |
| 1595 | 1610 | display: block; |
| 1596 | 1611 | padding: 9px min(35px, 5%); |
| 1597 | 1612 | gap: 10px; |
| @@ -1599,18 +1614,16 @@ | ||
| 1599 | 1614 | color: var(--e-a-color-black); |
| 1600 | 1615 | text-align: center; |
| 1601 | 1616 | box-shadow: 0px -10px 14px -6px rgba(0, 0, 0, 0.05); |
| 1602 | 1617 | } |
| 1603 | -#elementor-panel-get-pro-elements-sticky .elementor-get-pro-sticky-message a, | |
| 1604 | -.elementor-panel-editor-sticky-promotion .elementor-get-pro-sticky-message a { | |
| 1618 | +#elementor-panel-get-pro-elements-sticky .elementor-get-pro-sticky-message a { | |
| 1605 | 1619 | display: inline-block; |
| 1606 | 1620 | font-size: 13px; |
| 1607 | 1621 | font-weight: 500; |
| 1608 | 1622 | color: var(--e-a-btn-bg-accent); |
| 1609 | 1623 | } |
| 1610 | -#elementor-panel-get-pro-elements-sticky img, | |
| 1611 | -.elementor-panel-editor-sticky-promotion img { | |
| 1612 | - margin-inline-start: 17px; | |
| 1624 | +#elementor-panel-get-pro-elements-sticky img { | |
| 1625 | + margin-left: 17px; | |
| 1613 | 1626 | } |
| 1614 | 1627 | |
| 1615 | 1628 | #elementor-panel-notice-wrapper .elementor-panel-notice { |
| 1616 | 1629 | width: 90%; |
| @@ -1637,16 +1650,12 @@ | ||
| 1637 | 1650 | background: var(--e-a-color-primary); |
| 1638 | 1651 | border-radius: 50%; |
| 1639 | 1652 | width: 8px; |
| 1640 | 1653 | height: 8px; |
| 1641 | - inset-block-start: 5px; | |
| 1642 | - inset-inline-end: 5px; | |
| 1654 | + top: 5px; | |
| 1655 | + right: 5px; | |
| 1643 | 1656 | } |
| 1644 | 1657 | |
| 1645 | -#elementor-panel-footer.elementor-panel-footer-back-compat-wrapper { | |
| 1646 | - display: none !important; | |
| 1647 | -} | |
| 1648 | - | |
| 1649 | 1658 | .media-modal.wp-core-ui { |
| 1650 | 1659 | color-scheme: light; |
| 1651 | 1660 | color: #515962; |
| 1652 | 1661 | } |
| @@ -1817,8 +1826,11 @@ | ||
| 1817 | 1826 | background-color: var(--e-a-bg-chip); |
| 1818 | 1827 | border-radius: 100px; |
| 1819 | 1828 | padding: 5px 8px; |
| 1820 | 1829 | } |
| 1830 | +.elementor-panel-heading-category-chip i { | |
| 1831 | + margin-inline-start: 4px; | |
| 1832 | +} | |
| 1821 | 1833 | .elementor-panel-heading-promotion { |
| 1822 | 1834 | margin-inline-start: auto; |
| 1823 | 1835 | } |
| 1824 | 1836 | .elementor-panel-heading-promotion a { |
| @@ -1886,10 +1898,8 @@ | ||
| 1886 | 1898 | .elementor-group-control-attachment_alert .elementor-control-field-description { |
| 1887 | 1899 | margin-block-start: 0; |
| 1888 | 1900 | } |
| 1889 | 1901 | |
| 1890 | -.elementor-control-start-end .eicon-text-align-left, | |
| 1891 | -.elementor-control-start-end .eicon-text-align-right, | |
| 1892 | 1902 | .elementor-control-start-end .eicon-h-align-left, |
| 1893 | 1903 | .elementor-control-start-end .eicon-h-align-right { |
| 1894 | 1904 | scale: calc(1 * var(--direction-multiplier)) 1; |
| 1895 | 1905 | } |
| @@ -1929,9 +1939,9 @@ | ||
| 1929 | 1939 | } |
| 1930 | 1940 | .elementor-control-responsive-switchers__holder { |
| 1931 | 1941 | position: absolute; |
| 1932 | 1942 | width: 100%; |
| 1933 | - inset-block-start: 0; | |
| 1943 | + top: 0; | |
| 1934 | 1944 | background-color: var(--e-a-bg-default); |
| 1935 | 1945 | border-radius: var(--e-a-border-radius); |
| 1936 | 1946 | transition: 0.15s; |
| 1937 | 1947 | border: 1px solid transparent; |
| @@ -2252,9 +2262,9 @@ | ||
| 2252 | 2262 | } |
| 2253 | 2263 | .elementor-control-responsive-switchers__holder { |
| 2254 | 2264 | position: absolute; |
| 2255 | 2265 | width: 100%; |
| 2256 | - inset-block-start: 0; | |
| 2266 | + top: 0; | |
| 2257 | 2267 | background-color: var(--e-a-bg-default); |
| 2258 | 2268 | border-radius: var(--e-a-border-radius); |
| 2259 | 2269 | transition: 0.15s; |
| 2260 | 2270 | border: 1px solid transparent; |
| @@ -2530,9 +2540,9 @@ | ||
| 2530 | 2540 | } |
| 2531 | 2541 | .elementor-control-responsive-switchers__holder { |
| 2532 | 2542 | position: absolute; |
| 2533 | 2543 | width: 100%; |
| 2534 | - inset-block-start: 0; | |
| 2544 | + top: 0; | |
| 2535 | 2545 | background-color: var(--e-a-bg-default); |
| 2536 | 2546 | border-radius: var(--e-a-border-radius); |
| 2537 | 2547 | transition: 0.15s; |
| 2538 | 2548 | border: 1px solid transparent; |
| @@ -2798,11 +2808,11 @@ | ||
| 2798 | 2808 | } |
| 2799 | 2809 | |
| 2800 | 2810 | .elementor-control-type-icons .elementor-control-media__preview > * { |
| 2801 | 2811 | position: absolute; |
| 2802 | - inset-block-start: 50%; | |
| 2803 | - inset-inline-start: 50%; | |
| 2804 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 2812 | + top: 50%; | |
| 2813 | + left: 50%; | |
| 2814 | + transform: translate(-50%, -50%); | |
| 2805 | 2815 | } |
| 2806 | 2816 | .elementor-control-type-icons .elementor-control-media__preview i { |
| 2807 | 2817 | font-size: 70px; |
| 2808 | 2818 | } |
| @@ -3001,19 +3011,8 @@ | ||
| 3001 | 3011 | .e-global__preview-items-container::-webkit-scrollbar-thumb { |
| 3002 | 3012 | background-color: #BABFC5; |
| 3003 | 3013 | border-radius: 10px; |
| 3004 | 3014 | } |
| 3005 | -.e-global__group-header { | |
| 3006 | - padding: 12px 20px 5px; | |
| 3007 | - font-weight: 500; | |
| 3008 | - font-size: 11px; | |
| 3009 | - color: var(--e-a-color-txt-muted); | |
| 3010 | -} | |
| 3011 | -.e-global__group-divider { | |
| 3012 | - height: 1px; | |
| 3013 | - background-color: var(--e-a-border-color); | |
| 3014 | - margin: 10px 20px; | |
| 3015 | -} | |
| 3016 | 3015 | .e-global__manage-button { |
| 3017 | 3016 | font-weight: 500; |
| 3018 | 3017 | cursor: pointer; |
| 3019 | 3018 | } |
| @@ -3029,9 +3028,9 @@ | ||
| 3029 | 3028 | font-size: 13px; |
| 3030 | 3029 | content: "\e90e"; |
| 3031 | 3030 | position: absolute; |
| 3032 | 3031 | transform: translateY(-50%); |
| 3033 | - inset-block-start: 50%; | |
| 3032 | + top: 50%; | |
| 3034 | 3033 | inset-inline-start: 13px; |
| 3035 | 3034 | } |
| 3036 | 3035 | .e-global__color { |
| 3037 | 3036 | padding: 10px 20px; |
| @@ -3172,11 +3171,11 @@ | ||
| 3172 | 3171 | display: none; |
| 3173 | 3172 | } |
| 3174 | 3173 | .elementor-control-media .eicon-plus-circle { |
| 3175 | 3174 | position: absolute; |
| 3176 | - inset-block-start: 50%; | |
| 3177 | - inset-inline-start: 50%; | |
| 3178 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 3175 | + top: 50%; | |
| 3176 | + left: 50%; | |
| 3177 | + transform: translate(-50%, -50%); | |
| 3179 | 3178 | color: var(--e-a-color-white); |
| 3180 | 3179 | font-size: 20px; |
| 3181 | 3180 | } |
| 3182 | 3181 | .elementor-control-media__content__upload-button { |
| @@ -3199,11 +3198,11 @@ | ||
| 3199 | 3198 | display: none; |
| 3200 | 3199 | } |
| 3201 | 3200 | .elementor-control-media-area .eicon-video-camera { |
| 3202 | 3201 | position: absolute; |
| 3203 | - inset-block-start: 50%; | |
| 3204 | - inset-inline-start: 50%; | |
| 3205 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 3202 | + top: 50%; | |
| 3203 | + left: 50%; | |
| 3204 | + transform: translate(-50%, -50%); | |
| 3206 | 3205 | color: rgba(255, 255, 255, 0.7); |
| 3207 | 3206 | font-size: 21px; |
| 3208 | 3207 | } |
| 3209 | 3208 | .elementor-control-media .elementor-control-media__content { |
| @@ -3219,9 +3218,9 @@ | ||
| 3219 | 3218 | background-color: rgba(0, 0, 0, 0.2); |
| 3220 | 3219 | pointer-events: none; |
| 3221 | 3220 | } |
| 3222 | 3221 | .elementor-control-media .elementor-control-media__content:not(:hover) .elementor-control-media__tools { |
| 3223 | - inset-block-end: -30px; | |
| 3222 | + bottom: -30px; | |
| 3224 | 3223 | } |
| 3225 | 3224 | .elementor-control-media__content { |
| 3226 | 3225 | transition: all 0.2s ease-in-out; |
| 3227 | 3226 | } |
| @@ -3226,10 +3225,11 @@ | ||
| 3226 | 3225 | transition: all 0.2s ease-in-out; |
| 3227 | 3226 | } |
| 3228 | 3227 | .elementor-control-media__tools { |
| 3229 | 3228 | position: absolute; |
| 3230 | - inset-block-end: 0; | |
| 3231 | - inset-inline: 0; | |
| 3229 | + bottom: 0; | |
| 3230 | + left: 0; | |
| 3231 | + right: 0; | |
| 3232 | 3232 | height: 27px; |
| 3233 | 3233 | transition: all 0.2s ease-in-out; |
| 3234 | 3234 | } |
| 3235 | 3235 | .elementor-control-media__tools > *:not(:first-child) { |
| @@ -3643,9 +3643,9 @@ | ||
| 3643 | 3643 | } |
| 3644 | 3644 | .elementor-control-type-slider--handles-range .elementor-slider .noUi-handle:after { |
| 3645 | 3645 | content: ""; |
| 3646 | 3646 | position: absolute; |
| 3647 | - inset-block-start: 2px; | |
| 3647 | + top: 2px; | |
| 3648 | 3648 | height: 12px; |
| 3649 | 3649 | width: 11px; |
| 3650 | 3650 | transform: rotate(45deg); |
| 3651 | 3651 | background-color: var(--e-a-color-white); |
| @@ -3743,9 +3743,9 @@ | ||
| 3743 | 3743 | background-color: var(--e-a-border-color-focus); |
| 3744 | 3744 | } |
| 3745 | 3745 | .elementor-slider .noUi-tooltip { |
| 3746 | 3746 | position: absolute; |
| 3747 | - inset-block-start: calc(100% + 5px); | |
| 3747 | + top: calc(100% + 5px); | |
| 3748 | 3748 | left: calc(50% - 4px); |
| 3749 | 3749 | transform: translateX(-50%); |
| 3750 | 3750 | font-size: 10px; |
| 3751 | 3751 | } |
| @@ -3832,9 +3832,9 @@ | ||
| 3832 | 3832 | transition-property: opacity, background; |
| 3833 | 3833 | } |
| 3834 | 3834 | .elementor-control-type-switcher .elementor-switch-label:before, .elementor-control-type-switcher .elementor-switch-label:after { |
| 3835 | 3835 | position: absolute; |
| 3836 | - inset-block-start: 0; | |
| 3836 | + top: 0; | |
| 3837 | 3837 | width: 50%; |
| 3838 | 3838 | text-align: center; |
| 3839 | 3839 | line-height: 20px; |
| 3840 | 3840 | transition: inherit; |
| @@ -3840,14 +3840,14 @@ | ||
| 3840 | 3840 | transition: inherit; |
| 3841 | 3841 | } |
| 3842 | 3842 | .elementor-control-type-switcher .elementor-switch-label:before { |
| 3843 | 3843 | content: attr(data-off); |
| 3844 | - inset-inline-end: 5px; | |
| 3844 | + right: 5px; | |
| 3845 | 3845 | color: var(--e-a-color-txt-muted); |
| 3846 | 3846 | } |
| 3847 | 3847 | .elementor-control-type-switcher .elementor-switch-label:after { |
| 3848 | 3848 | content: attr(data-on); |
| 3849 | - inset-inline-start: 5px; | |
| 3849 | + left: 5px; | |
| 3850 | 3850 | color: var(--e-a-btn-color); |
| 3851 | 3851 | opacity: 0; |
| 3852 | 3852 | } |
| 3853 | 3853 | .elementor-control-type-switcher .elementor-switch-input:checked ~ .elementor-switch-label { |
| @@ -3860,19 +3860,19 @@ | ||
| 3860 | 3860 | opacity: 1; |
| 3861 | 3861 | } |
| 3862 | 3862 | .elementor-control-type-switcher .elementor-switch-handle { |
| 3863 | 3863 | position: absolute; |
| 3864 | - inset-block-start: 1px; | |
| 3865 | - inset-inline-start: 1px; | |
| 3864 | + top: 1px; | |
| 3865 | + left: 1px; | |
| 3866 | 3866 | width: 18px; |
| 3867 | 3867 | height: 18px; |
| 3868 | 3868 | background: white; |
| 3869 | 3869 | border-radius: 10px; |
| 3870 | - transition: inset-inline-start 0.15s ease-out; | |
| 3870 | + transition: left 0.15s ease-out; | |
| 3871 | 3871 | } |
| 3872 | 3872 | .elementor-control-type-switcher .elementor-switch-input:checked ~ .elementor-switch-handle { |
| 3873 | - inset-inline-start: initial; | |
| 3874 | - inset-inline-end: 1px; | |
| 3873 | + left: initial; | |
| 3874 | + right: 1px; | |
| 3875 | 3875 | } |
| 3876 | 3876 | |
| 3877 | 3877 | .elementor-control-type-tabs { |
| 3878 | 3878 | display: none; |
| @@ -4005,10 +4005,10 @@ | ||
| 4005 | 4005 | } |
| 4006 | 4006 | .elementor-control-type-url .elementor-control-url-autocomplete-spinner { |
| 4007 | 4007 | display: none; |
| 4008 | 4008 | position: absolute; |
| 4009 | - inset-block-start: 5px; | |
| 4010 | - inset-inline-end: 0; | |
| 4009 | + top: 5px; | |
| 4010 | + right: 0; | |
| 4011 | 4011 | width: 10px; |
| 4012 | 4012 | height: 10px; |
| 4013 | 4013 | font-size: 10px; |
| 4014 | 4014 | color: var(--e-a-color-txt-disabled); |
| @@ -4348,11 +4348,11 @@ | ||
| 4348 | 4348 | } |
| 4349 | 4349 | |
| 4350 | 4350 | #elementor-panel-revisions-loading { |
| 4351 | 4351 | position: absolute; |
| 4352 | - inset-block-start: 50%; | |
| 4353 | - inset-inline-start: 50%; | |
| 4354 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 4352 | + top: 50%; | |
| 4353 | + left: 50%; | |
| 4354 | + transform: translate(-50%, -50%); | |
| 4355 | 4355 | } |
| 4356 | 4356 | #elementor-panel-revisions-loading .eicon-loading { |
| 4357 | 4357 | font-size: 50px; |
| 4358 | 4358 | } |
| @@ -4436,10 +4436,10 @@ | ||
| 4436 | 4436 | .e-control-display-conditions-promotion__wrapper { |
| 4437 | 4437 | display: flex; |
| 4438 | 4438 | justify-content: space-between; |
| 4439 | 4439 | } |
| 4440 | -.e-control-display-conditions-promotion__wrapper:hover .eicon-upgrade-crown-full.e-control-display-conditions-promotion { | |
| 4441 | - color: var(--e-a-color-accent-promotion); | |
| 4440 | +.e-control-display-conditions-promotion__wrapper:hover .eicon-lock.e-control-display-conditions-promotion { | |
| 4441 | + color: var(--e-a-color-accent); | |
| 4442 | 4442 | } |
| 4443 | 4443 | .e-control-display-conditions-promotion__description { |
| 4444 | 4444 | display: flex; |
| 4445 | 4445 | align-self: center; |
| @@ -4452,11 +4452,8 @@ | ||
| 4452 | 4452 | display: flex; |
| 4453 | 4453 | justify-content: center; |
| 4454 | 4454 | align-items: center; |
| 4455 | 4455 | } |
| 4456 | -.e-control-display-conditions-promotion__lock-wrapper .eicon-upgrade-crown-full { | |
| 4457 | - color: var(--e-a-color-accent-promotion-disabled); | |
| 4458 | -} | |
| 4459 | 4456 | .e-control-display-conditions-promotion.eicon-flow { |
| 4460 | 4457 | align-self: flex-end; |
| 4461 | 4458 | cursor: pointer; |
| 4462 | 4459 | border: var(--e-a-border-bold); |
| @@ -4467,10 +4464,10 @@ | ||
| 4467 | 4464 | background-color: var(--e-a-bg-active); |
| 4468 | 4465 | color: #E73CF6; |
| 4469 | 4466 | } |
| 4470 | 4467 | |
| 4471 | -.e-control-motion-effects-promotion__wrapper:hover .eicon-upgrade-crown-full, .e-control-promotion__wrapper:hover .eicon-upgrade-crown-full { | |
| 4472 | - color: var(--e-a-color-accent-promotion); | |
| 4468 | +.e-control-motion-effects-promotion__wrapper:hover .eicon-lock, .e-control-promotion__wrapper:hover .eicon-lock { | |
| 4469 | + color: var(--e-a-color-accent); | |
| 4473 | 4470 | } |
| 4474 | 4471 | .e-control-motion-effects-promotion__wrapper .elementor-control-title, .e-control-promotion__wrapper .elementor-control-title { |
| 4475 | 4472 | margin-inline-end: 0; |
| 4476 | 4473 | } |
| @@ -4495,11 +4492,8 @@ | ||
| 4495 | 4492 | display: flex; |
| 4496 | 4493 | justify-content: center; |
| 4497 | 4494 | align-items: center; |
| 4498 | 4495 | } |
| 4499 | -.e-control-motion-effects-promotion__lock-wrapper .eicon-upgrade-crown-full, .e-control-promotion__lock-wrapper .eicon-upgrade-crown-full { | |
| 4500 | - color: var(--e-a-color-accent-promotion-disabled); | |
| 4501 | -} | |
| 4502 | 4496 | |
| 4503 | 4497 | .e-link-promotion { |
| 4504 | 4498 | font-family: "Roboto", sans-serif; |
| 4505 | 4499 | font-weight: 500; |
| @@ -4529,9 +4523,11 @@ | ||
| 4529 | 4523 | .elementor-editor-kit .elementor-panel #elementor-panel-page-menu { |
| 4530 | 4524 | padding: 25px 15px 0; |
| 4531 | 4525 | } |
| 4532 | 4526 | .elementor-editor-kit #elementor-panel-header-add-button, |
| 4533 | -.elementor-editor-kit #elementor-panel-header-menu-button { | |
| 4527 | +.elementor-editor-kit #elementor-panel-header-menu-button, | |
| 4528 | +.elementor-editor-kit #elementor-panel-footer-sub-menu-item-save-template, | |
| 4529 | +.elementor-editor-kit #elementor-panel-footer-navigator { | |
| 4534 | 4530 | display: none; |
| 4535 | 4531 | } |
| 4536 | 4532 | |
| 4537 | 4533 | .elementor-control-type-global-style-repeater .elementor-repeater-fields { |
| @@ -5011,20 +5007,8 @@ | ||
| 5011 | 5007 | background-color: #fff; |
| 5012 | 5008 | box-shadow: 0 0 3px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 0, 0, 0.15); |
| 5013 | 5009 | } |
| 5014 | 5010 | |
| 5015 | -#elementor-template-library-modal button:focus-visible, | |
| 5016 | -#elementor-template-library-modal a:focus-visible, | |
| 5017 | -#elementor-template-library-modal input:focus-visible, | |
| 5018 | -#elementor-template-library-modal select:focus-visible, | |
| 5019 | -#elementor-template-library-modal [tabindex="0"]:focus-visible, | |
| 5020 | -#elementor-template-library-modal [role=tab]:focus-visible, | |
| 5021 | -#elementor-template-library-modal [role=radio]:focus-visible, | |
| 5022 | -#elementor-template-library-modal [role=menuitem]:focus-visible { | |
| 5023 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 5024 | - outline-offset: 2px; | |
| 5025 | - border-radius: 2px; | |
| 5026 | -} | |
| 5027 | 5011 | #elementor-template-library-modal a.elementor-template-library-blank-footer-link { |
| 5028 | 5012 | font-style: normal; |
| 5029 | 5013 | text-decoration: underline; |
| 5030 | 5014 | } |
| @@ -5036,10 +5020,10 @@ | ||
| 5036 | 5020 | } |
| 5037 | 5021 | #elementor-template-library-modal .dialog-message { |
| 5038 | 5022 | overflow-y: scroll; |
| 5039 | 5023 | } |
| 5040 | -#elementor-template-library-modal:has(#elementor-template-library-save-template) .dialog-message, #elementor-template-library-modal:has(#elementor-template-library-save-template-variant-b) .dialog-message { | |
| 5041 | - overflow-y: auto; | |
| 5024 | +#elementor-template-library-modal:has(#elementor-template-library-save-template) .dialog-message { | |
| 5025 | + overflow-y: hidden; | |
| 5042 | 5026 | } |
| 5043 | 5027 | #elementor-template-library-modal .e-back-to-editor { |
| 5044 | 5028 | color: var(--e-a-color-txt); |
| 5045 | 5029 | text-decoration: underline; |
| @@ -5055,21 +5039,14 @@ | ||
| 5055 | 5039 | display: inline-block; |
| 5056 | 5040 | padding: 17px 20px; |
| 5057 | 5041 | border-block-end: 3px solid transparent; |
| 5058 | 5042 | cursor: pointer; |
| 5059 | - background: transparent; | |
| 5060 | - margin: 0; | |
| 5061 | - font-size: inherit; | |
| 5062 | - font-family: inherit; | |
| 5063 | - color: inherit; | |
| 5064 | - border: none; | |
| 5065 | 5043 | } |
| 5066 | 5044 | .elementor-template-library-menu-item:hover { |
| 5067 | 5045 | background-color: var(--e-a-bg-hover); |
| 5068 | 5046 | border-color: var(--e-a-bg-hover); |
| 5069 | 5047 | } |
| 5070 | -.elementor-template-library-menu-item.elementor-active, .elementor-template-library-menu-item[aria-selected=true] { | |
| 5071 | - border-block-end: 3px solid; | |
| 5048 | +.elementor-template-library-menu-item.elementor-active { | |
| 5072 | 5049 | border-color: var(--e-a-border-color-accent); |
| 5073 | 5050 | color: var(--e-a-color-txt-accent); |
| 5074 | 5051 | } |
| 5075 | 5052 | |
| @@ -5075,25 +5052,11 @@ | ||
| 5075 | 5052 | |
| 5076 | 5053 | #elementor-template-library-header-actions { |
| 5077 | 5054 | display: flex; |
| 5078 | 5055 | } |
| 5079 | -#elementor-template-library-header-actions > div, | |
| 5080 | -#elementor-template-library-header-actions > button { | |
| 5081 | - background: transparent; | |
| 5082 | - margin: 0; | |
| 5083 | - font-size: inherit; | |
| 5084 | - font-family: inherit; | |
| 5085 | - color: inherit; | |
| 5086 | - border: none; | |
| 5056 | +#elementor-template-library-header-actions > div { | |
| 5087 | 5057 | padding-inline-end: 16px; |
| 5088 | - cursor: pointer; | |
| 5089 | 5058 | } |
| 5090 | -#elementor-template-library-header-actions > div:focus-visible, | |
| 5091 | -#elementor-template-library-header-actions > button:focus-visible { | |
| 5092 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 5093 | - outline-offset: -2px; | |
| 5094 | - border-radius: 2px; | |
| 5095 | -} | |
| 5096 | 5059 | |
| 5097 | 5060 | #elementor-template-library-header-tools.e-hidden-disabled { |
| 5098 | 5061 | opacity: 0; |
| 5099 | 5062 | visibility: hidden; |
| @@ -5115,25 +5078,8 @@ | ||
| 5115 | 5078 | border-inline-end: var(--e-a-border); |
| 5116 | 5079 | cursor: pointer; |
| 5117 | 5080 | transition: color 0.5s; |
| 5118 | 5081 | } |
| 5119 | -#elementor-template-library-header-preview-back .elementor-template-library-header-back-button { | |
| 5120 | - background: transparent; | |
| 5121 | - margin: 0; | |
| 5122 | - font-size: inherit; | |
| 5123 | - font-family: inherit; | |
| 5124 | - color: inherit; | |
| 5125 | - border: none; | |
| 5126 | - display: flex; | |
| 5127 | - align-items: center; | |
| 5128 | - gap: 10px; | |
| 5129 | - cursor: pointer; | |
| 5130 | -} | |
| 5131 | -#elementor-template-library-header-preview-back .elementor-template-library-header-back-button:focus-visible { | |
| 5132 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 5133 | - outline-offset: 2px; | |
| 5134 | - border-radius: 2px; | |
| 5135 | -} | |
| 5136 | 5082 | #elementor-template-library-header-preview-back:hover { |
| 5137 | 5083 | color: var(--e-a-color-txt-hover); |
| 5138 | 5084 | } |
| 5139 | 5085 | #elementor-template-library-header-preview-back i { |
| @@ -5166,20 +5112,15 @@ | ||
| 5166 | 5112 | } |
| 5167 | 5113 | #elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-container, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-container { |
| 5168 | 5114 | display: flex; |
| 5169 | 5115 | align-items: baseline; |
| 5170 | - border-radius: 3px; | |
| 5171 | 5116 | } |
| 5172 | -#elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-container:focus-visible, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-container:focus-visible { | |
| 5173 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 5174 | - outline-offset: 2px; | |
| 5175 | -} | |
| 5176 | 5117 | #elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-info, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-info { |
| 5177 | 5118 | align-items: center; |
| 5178 | 5119 | } |
| 5179 | 5120 | #elementor-template-library-templates[data-template-source=cloud] .toolbar-container .quota-progress-info i, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .quota-progress-info i { |
| 5180 | 5121 | font-size: 14px; |
| 5181 | - margin-inline-start: 5px; | |
| 5122 | + margin-left: 5px; | |
| 5182 | 5123 | } |
| 5183 | 5124 | #elementor-template-library-templates[data-template-source=cloud] .toolbar-container .progress-bar-container, #elementor-template-library-templates[data-template-source=empty] .toolbar-container .progress-bar-container { |
| 5184 | 5125 | width: 200px; |
| 5185 | 5126 | margin: 0px 10px; |
| @@ -5278,14 +5219,8 @@ | ||
| 5278 | 5219 | align-items: center; |
| 5279 | 5220 | gap: 8px; |
| 5280 | 5221 | } |
| 5281 | 5222 | #elementor-template-library-templates .elementor-template-library-filter-toolbar-side-actions .elementor-template-library-action-item { |
| 5282 | - background: transparent; | |
| 5283 | - margin: 0; | |
| 5284 | - font-size: inherit; | |
| 5285 | - font-family: inherit; | |
| 5286 | - color: inherit; | |
| 5287 | - border: none; | |
| 5288 | 5223 | cursor: pointer; |
| 5289 | 5224 | font-size: 20px; |
| 5290 | 5225 | padding: 0 5px; |
| 5291 | 5226 | border-radius: 2px; |
| @@ -5325,19 +5260,15 @@ | ||
| 5325 | 5260 | padding: 8px; |
| 5326 | 5261 | border: var(--e-a-border); |
| 5327 | 5262 | border-radius: 3px; |
| 5328 | 5263 | } |
| 5329 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:focus-visible { | |
| 5330 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 5331 | - outline-offset: 2px; | |
| 5332 | -} | |
| 5333 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):hover .elementor-template-library-template-preview, #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):focus .elementor-template-library-template-preview, #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):focus-within .elementor-template-library-template-preview { | |
| 5264 | +#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 { | |
| 5334 | 5265 | display: flex; |
| 5335 | 5266 | } |
| 5336 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):hover .elementor-template-library-card-footer .elementor-template-library-template-name, #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):focus .elementor-template-library-card-footer .elementor-template-library-template-name, #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):focus-within .elementor-template-library-card-footer .elementor-template-library-template-name { | |
| 5267 | +#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 { | |
| 5337 | 5268 | display: none; |
| 5338 | 5269 | } |
| 5339 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):hover .elementor-template-library-card-footer .elementor-template-library-template-card-footer-overlay, #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):focus .elementor-template-library-card-footer .elementor-template-library-template-card-footer-overlay, #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:not([data-status=locked]):focus-within .elementor-template-library-card-footer .elementor-template-library-template-card-footer-overlay { | |
| 5270 | +#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 { | |
| 5340 | 5271 | display: flex !important; |
| 5341 | 5272 | } |
| 5342 | 5273 | #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-template-thumbnail { |
| 5343 | 5274 | width: 190px; |
| @@ -5343,14 +5274,14 @@ | ||
| 5343 | 5274 | width: 190px; |
| 5344 | 5275 | height: 100px; |
| 5345 | 5276 | position: relative; |
| 5346 | 5277 | border-radius: 3px; |
| 5347 | - margin-block-end: 4px; | |
| 5278 | + margin-bottom: 4px; | |
| 5348 | 5279 | overflow: hidden; |
| 5349 | 5280 | } |
| 5350 | 5281 | #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-template-thumbnail img { |
| 5351 | - -o-object-fit: contain; | |
| 5352 | - object-fit: contain; | |
| 5282 | + -o-object-fit: cover; | |
| 5283 | + object-fit: cover; | |
| 5353 | 5284 | width: 100%; |
| 5354 | 5285 | height: 100%; |
| 5355 | 5286 | } |
| 5356 | 5287 | #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-template-preview { |
| @@ -5432,29 +5363,16 @@ | ||
| 5432 | 5363 | gap: 20px; |
| 5433 | 5364 | align-items: center; |
| 5434 | 5365 | flex: 1; |
| 5435 | 5366 | } |
| 5436 | -#elementor-template-library-templates .bulk-selection-action-bar button { | |
| 5437 | - background: transparent; | |
| 5438 | - margin: 0; | |
| 5439 | - font-size: inherit; | |
| 5440 | - font-family: inherit; | |
| 5441 | - color: inherit; | |
| 5442 | - border: none; | |
| 5367 | +#elementor-template-library-templates .bulk-selection-action-bar i { | |
| 5443 | 5368 | cursor: pointer; |
| 5444 | - display: flex; | |
| 5445 | - align-items: center; | |
| 5446 | - justify-content: center; | |
| 5369 | + font-size: 18px; | |
| 5447 | 5370 | } |
| 5448 | -#elementor-template-library-templates .bulk-selection-action-bar button.disabled { | |
| 5371 | +#elementor-template-library-templates .bulk-selection-action-bar i.disabled { | |
| 5449 | 5372 | pointer-events: none; |
| 5450 | 5373 | opacity: 0.3; |
| 5451 | - cursor: not-allowed; | |
| 5452 | 5374 | } |
| 5453 | -#elementor-template-library-templates .bulk-selection-action-bar i { | |
| 5454 | - cursor: pointer; | |
| 5455 | - font-size: 18px; | |
| 5456 | -} | |
| 5457 | 5375 | #elementor-template-library-templates .bulk-selection-action-bar .eicon-editor-close { |
| 5458 | 5376 | font-size: 20px; |
| 5459 | 5377 | } |
| 5460 | 5378 | #elementor-template-library-templates #elementor-template-library-navigation-container { |
| @@ -5490,12 +5408,12 @@ | ||
| 5490 | 5408 | background: var(--e-a-bg-active); |
| 5491 | 5409 | } |
| 5492 | 5410 | #elementor-template-library-templates .elementor-template-library-local-column-1 input[type=checkbox] { |
| 5493 | 5411 | position: relative; |
| 5494 | - inset-block-start: 3px; | |
| 5412 | + top: 3px; | |
| 5495 | 5413 | } |
| 5496 | 5414 | #elementor-template-library-templates .elementor-template-library-local-column-1 input[type=checkbox]:checked { |
| 5497 | - inset-block-start: 0px; | |
| 5415 | + top: 0px; | |
| 5498 | 5416 | } |
| 5499 | 5417 | #elementor-template-library-templates .bulk-selection-item-checkbox:checked, |
| 5500 | 5418 | #elementor-template-library-templates #bulk-select-all:checked { |
| 5501 | 5419 | background: #69727D; |
| @@ -5536,11 +5454,11 @@ | ||
| 5536 | 5454 | .elementor-template-library-filter-select-source .source-option i { |
| 5537 | 5455 | margin-inline-end: 5px; |
| 5538 | 5456 | } |
| 5539 | 5457 | .elementor-template-library-filter-select-source .source-option .new-badge { |
| 5540 | - border: 1px solid var(--e-a-color-primary-bold-dark); | |
| 5458 | + border: 1px solid var(--e-a-color-primary-bold); | |
| 5541 | 5459 | padding: 2px 4px; |
| 5542 | - color: var(--e-a-color-primary-bold-dark); | |
| 5460 | + color: var(--e-a-color-primary-bold); | |
| 5543 | 5461 | border-radius: 10px; |
| 5544 | 5462 | font-size: 10px; |
| 5545 | 5463 | margin-inline-start: 5px; |
| 5546 | 5464 | } |
| @@ -5547,52 +5465,8 @@ | ||
| 5547 | 5465 | .elementor-template-library-filter-select-source .source-option.selected, .elementor-template-library-filter-select-source .source-option:hover { |
| 5548 | 5466 | background-color: var(--e-a-bg-hover); |
| 5549 | 5467 | } |
| 5550 | 5468 | |
| 5551 | -#elementor-template-library-connect-states .elementor-template-library-filter-toolbar { | |
| 5552 | - display: flex; | |
| 5553 | - align-items: center; | |
| 5554 | - justify-content: space-between; | |
| 5555 | -} | |
| 5556 | - | |
| 5557 | -#elementor-template-library-toolbar .source-option-badge, | |
| 5558 | -.elementor-template-library-connect-states-badge .source-option-badge { | |
| 5559 | - display: flex; | |
| 5560 | - align-items: center; | |
| 5561 | - gap: 6px; | |
| 5562 | - padding: 6px 12px; | |
| 5563 | - border: none; | |
| 5564 | - border-radius: 20px; | |
| 5565 | - font-size: 14px; | |
| 5566 | - font-weight: 500; | |
| 5567 | - white-space: nowrap; | |
| 5568 | - margin-inline-start: auto; | |
| 5569 | - margin-inline-end: 15px; | |
| 5570 | -} | |
| 5571 | -#elementor-template-library-toolbar .source-option-badge i, | |
| 5572 | -.elementor-template-library-connect-states-badge .source-option-badge i { | |
| 5573 | - margin: 0; | |
| 5574 | - font-size: 14px; | |
| 5575 | -} | |
| 5576 | -#elementor-template-library-toolbar .source-option-badge.cloud-badge, | |
| 5577 | -.elementor-template-library-connect-states-badge .source-option-badge.cloud-badge { | |
| 5578 | - background-color: var(--e-a-bg-info); | |
| 5579 | - color: var(--e-a-color-info); | |
| 5580 | -} | |
| 5581 | -#elementor-template-library-toolbar .source-option-badge.cloud-badge i, | |
| 5582 | -.elementor-template-library-connect-states-badge .source-option-badge.cloud-badge i { | |
| 5583 | - color: var(--e-a-color-info); | |
| 5584 | -} | |
| 5585 | -#elementor-template-library-toolbar .source-option-badge.site-badge, | |
| 5586 | -.elementor-template-library-connect-states-badge .source-option-badge.site-badge { | |
| 5587 | - background-color: var(--e-a-bg-warning); | |
| 5588 | - color: var(--e-a-btn-bg-warning-hover); | |
| 5589 | -} | |
| 5590 | -#elementor-template-library-toolbar .source-option-badge.site-badge i, | |
| 5591 | -.elementor-template-library-connect-states-badge .source-option-badge.site-badge i { | |
| 5592 | - color: var(--e-a-btn-bg-warning-hover); | |
| 5593 | -} | |
| 5594 | - | |
| 5595 | 5469 | #elementor-template-library-filter-toolbar-remote { |
| 5596 | 5470 | font-size: 11px; |
| 5597 | 5471 | } |
| 5598 | 5472 | |
| @@ -5667,9 +5541,9 @@ | ||
| 5667 | 5541 | content: "\e923"; |
| 5668 | 5542 | } |
| 5669 | 5543 | |
| 5670 | 5544 | #elementor-template-library-create-new-folder-dialog .elementor-create-folder-template-dialog__p { |
| 5671 | - margin-block-end: 10px; | |
| 5545 | + margin-bottom: 10px; | |
| 5672 | 5546 | } |
| 5673 | 5547 | |
| 5674 | 5548 | #elementor-template-library-filter-text-wrapper { |
| 5675 | 5549 | width: 200px; |
| @@ -5681,9 +5555,9 @@ | ||
| 5681 | 5555 | inset-inline-end: 0; |
| 5682 | 5556 | transform: translateY(-50%); |
| 5683 | 5557 | } |
| 5684 | 5558 | #elementor-template-library-filter-text-wrapper i.eicon-loading.eicon-animation-spin { |
| 5685 | - inset-block-start: 25%; | |
| 5559 | + top: 25%; | |
| 5686 | 5560 | } |
| 5687 | 5561 | |
| 5688 | 5562 | #elementor-template-library-filter-text { |
| 5689 | 5563 | border: none; |
| @@ -5710,32 +5584,19 @@ | ||
| 5710 | 5584 | padding: 8px; |
| 5711 | 5585 | border: var(--e-a-border); |
| 5712 | 5586 | border-radius: 3px; |
| 5713 | 5587 | } |
| 5714 | -.elementor-template-library-template-remote:focus-visible { | |
| 5715 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 5716 | - outline-offset: 2px; | |
| 5717 | -} | |
| 5718 | -.elementor-template-library-template-remote:hover, .elementor-template-library-template-remote:focus, .elementor-template-library-template-remote:focus-within { | |
| 5588 | +.elementor-template-library-template-remote:hover { | |
| 5719 | 5589 | background-color: var(--e-a-bg-hover); |
| 5720 | 5590 | } |
| 5721 | -.elementor-template-library-template-remote:hover .elementor-template-library-template-preview, .elementor-template-library-template-remote:focus .elementor-template-library-template-preview, .elementor-template-library-template-remote:focus-within .elementor-template-library-template-preview { | |
| 5722 | - opacity: 1; | |
| 5723 | -} | |
| 5724 | -.elementor-template-library-template-remote:hover .elementor-template-library-template-name, .elementor-template-library-template-remote:focus .elementor-template-library-template-name, .elementor-template-library-template-remote:focus-within .elementor-template-library-template-name { | |
| 5591 | +.elementor-template-library-template-remote:hover .elementor-template-library-template-name { | |
| 5725 | 5592 | display: none; |
| 5726 | 5593 | } |
| 5727 | -.elementor-template-library-template-remote:hover .elementor-template-library-favorite, | |
| 5728 | -.elementor-template-library-template-remote:hover .elementor-template-library-template-action, .elementor-template-library-template-remote:focus .elementor-template-library-favorite, | |
| 5729 | -.elementor-template-library-template-remote:focus .elementor-template-library-template-action, .elementor-template-library-template-remote:focus-within .elementor-template-library-favorite, | |
| 5730 | -.elementor-template-library-template-remote:focus-within .elementor-template-library-template-action { | |
| 5731 | - display: initial; | |
| 5732 | -} | |
| 5733 | -.elementor-template-library-template-remote:not(:hover):not(:focus):not(:focus-within) .elementor-template-library-template-preview { | |
| 5594 | +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-template-preview { | |
| 5734 | 5595 | opacity: 0; |
| 5735 | 5596 | } |
| 5736 | -.elementor-template-library-template-remote:not(:hover):not(:focus):not(:focus-within) .elementor-template-library-favorite, | |
| 5737 | -.elementor-template-library-template-remote:not(:hover):not(:focus):not(:focus-within) .elementor-template-library-template-action { | |
| 5597 | +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-favorite, | |
| 5598 | +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-template-action { | |
| 5738 | 5599 | display: none; |
| 5739 | 5600 | } |
| 5740 | 5601 | .elementor-template-library-template-remote.elementor-template-library-pro-template .elementor-template-library-template-body:before { |
| 5741 | 5602 | content: var(--elementor-template-library-subscription-plan-label); |
| @@ -5770,9 +5631,9 @@ | ||
| 5770 | 5631 | } |
| 5771 | 5632 | .elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp) .elementor-template-library-template-name { |
| 5772 | 5633 | display: none; |
| 5773 | 5634 | } |
| 5774 | -.elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp):not(:hover):not(:focus):not(:focus-within) .elementor-template-library-template-footer { | |
| 5635 | +.elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp):not(:hover) .elementor-template-library-template-footer { | |
| 5775 | 5636 | transform: translateY(100%); |
| 5776 | 5637 | } |
| 5777 | 5638 | .elementor-template-library-template-remote .elementor-template-library-template-body { |
| 5778 | 5639 | position: relative; |
| @@ -5797,11 +5658,11 @@ | ||
| 5797 | 5658 | } |
| 5798 | 5659 | .elementor-template-library-template-remote .elementor-template-library-template-preview i { |
| 5799 | 5660 | font-size: 20px; |
| 5800 | 5661 | position: absolute; |
| 5801 | - inset-block-start: 50%; | |
| 5802 | - inset-inline-start: 50%; | |
| 5803 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 5662 | + top: 50%; | |
| 5663 | + left: 50%; | |
| 5664 | + transform: translate(-50%, -50%); | |
| 5804 | 5665 | } |
| 5805 | 5666 | .elementor-template-library-template-remote .elementor-template-library-template-footer { |
| 5806 | 5667 | display: flex; |
| 5807 | 5668 | justify-content: space-between; |
| @@ -5821,22 +5682,10 @@ | ||
| 5821 | 5682 | .elementor-template-library-template-remote .elementor-template-library-favorite { |
| 5822 | 5683 | margin-inline-start: auto; |
| 5823 | 5684 | } |
| 5824 | 5685 | .elementor-template-library-template-remote .elementor-template-library-template-favorite-input { |
| 5825 | - position: absolute; | |
| 5826 | - width: 1px; | |
| 5827 | - height: 1px; | |
| 5828 | - padding: 0; | |
| 5829 | - margin: -1px; | |
| 5830 | - overflow: hidden; | |
| 5831 | - clip: rect(0, 0, 0, 0); | |
| 5832 | - white-space: nowrap; | |
| 5833 | - border: 0; | |
| 5686 | + display: none; | |
| 5834 | 5687 | } |
| 5835 | -.elementor-template-library-template-remote .elementor-template-library-template-favorite-input:focus-visible + .elementor-template-library-template-favorite-label { | |
| 5836 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 5837 | - outline-offset: 2px; | |
| 5838 | -} | |
| 5839 | 5688 | .elementor-template-library-template-remote .elementor-template-library-template-favorite-input:checked + .elementor-template-library-template-favorite-label i:before { |
| 5840 | 5689 | content: "\e93f"; |
| 5841 | 5690 | color: var(--e-a-color-primary-bold); |
| 5842 | 5691 | } |
| @@ -5955,22 +5804,11 @@ | ||
| 5955 | 5804 | box-shadow: 1px 3px 11px rgba(0, 0, 0, 0.3); |
| 5956 | 5805 | inset-block-start: 100%; |
| 5957 | 5806 | inset-inline-end: 0; |
| 5958 | 5807 | z-index: 1; |
| 5959 | - list-style: none; | |
| 5960 | - margin: 0; | |
| 5961 | - padding: 0; | |
| 5962 | 5808 | } |
| 5963 | -.elementor-template-library-template-local .elementor-template-library-template-more > li button, | |
| 5964 | -.elementor-template-library-template-local .elementor-template-library-template-more > li a, | |
| 5965 | -.elementor-template-library-template-cloud .elementor-template-library-template-more > li button, | |
| 5966 | -.elementor-template-library-template-cloud .elementor-template-library-template-more > li a { | |
| 5967 | - background: transparent; | |
| 5968 | - margin: 0; | |
| 5969 | - font-size: inherit; | |
| 5970 | - font-family: inherit; | |
| 5971 | - color: inherit; | |
| 5972 | - border: none; | |
| 5809 | +.elementor-template-library-template-local .elementor-template-library-template-more > div, | |
| 5810 | +.elementor-template-library-template-cloud .elementor-template-library-template-more > div { | |
| 5973 | 5811 | padding: 10px 20px; |
| 5974 | 5812 | font-size: 11px; |
| 5975 | 5813 | cursor: pointer; |
| 5976 | 5814 | display: flex; |
| @@ -5975,21 +5813,25 @@ | ||
| 5975 | 5813 | cursor: pointer; |
| 5976 | 5814 | display: flex; |
| 5977 | 5815 | align-items: center; |
| 5978 | 5816 | gap: 8px; |
| 5979 | - width: 100%; | |
| 5980 | 5817 | } |
| 5981 | -.elementor-template-library-template-local .elementor-template-library-template-more > li button.disabled, | |
| 5982 | -.elementor-template-library-template-local .elementor-template-library-template-more > li a.disabled, | |
| 5983 | -.elementor-template-library-template-cloud .elementor-template-library-template-more > li button.disabled, | |
| 5984 | -.elementor-template-library-template-cloud .elementor-template-library-template-more > li a.disabled { | |
| 5818 | +.elementor-template-library-template-local .elementor-template-library-template-more > div.disabled, | |
| 5819 | +.elementor-template-library-template-cloud .elementor-template-library-template-more > div.disabled { | |
| 5985 | 5820 | cursor: not-allowed; |
| 5986 | 5821 | color: var(--e-a-color-txt-disabled); |
| 5987 | 5822 | } |
| 5988 | -.elementor-template-library-template-local .elementor-template-library-template-more > li a, | |
| 5989 | -.elementor-template-library-template-cloud .elementor-template-library-template-more > li a { | |
| 5823 | +.elementor-template-library-template-local .elementor-template-library-template-more > div.disabled a, | |
| 5824 | +.elementor-template-library-template-cloud .elementor-template-library-template-more > div.disabled a { | |
| 5825 | + color: var(--e-a-color-txt-disabled); | |
| 5826 | + cursor: not-allowed; | |
| 5827 | +} | |
| 5828 | +.elementor-template-library-template-local .elementor-template-library-template-more a, | |
| 5829 | +.elementor-template-library-template-cloud .elementor-template-library-template-more a { | |
| 5990 | 5830 | color: var(--e-a-color-txt); |
| 5991 | - text-decoration: none; | |
| 5831 | + display: flex; | |
| 5832 | + align-items: center; | |
| 5833 | + gap: 8px; | |
| 5992 | 5834 | } |
| 5993 | 5835 | .elementor-template-library-template-local .elementor-template-library-template-more .elementor-template-library-template-delete, |
| 5994 | 5836 | .elementor-template-library-template-cloud .elementor-template-library-template-more .elementor-template-library-template-delete { |
| 5995 | 5837 | color: var(--e-a-color-danger); |
| @@ -6001,14 +5843,8 @@ | ||
| 6001 | 5843 | .elementor-template-library-template-local .elementor-template-library-template-more-toggle, |
| 6002 | 5844 | .elementor-template-library-template-cloud .elementor-template-library-template-more-toggle { |
| 6003 | 5845 | margin-inline-start: auto; |
| 6004 | 5846 | cursor: pointer; |
| 6005 | - background: none; | |
| 6006 | - border: none; | |
| 6007 | - padding: 0; | |
| 6008 | - display: flex; | |
| 6009 | - align-items: center; | |
| 6010 | - justify-content: center; | |
| 6011 | 5847 | } |
| 6012 | 5848 | .elementor-template-library-template-local .elementor-template-library-template-more-toggle i, |
| 6013 | 5849 | .elementor-template-library-template-cloud .elementor-template-library-template-more-toggle i { |
| 6014 | 5850 | font-size: 20px; |
| @@ -6075,11 +5911,9 @@ | ||
| 6075 | 5911 | display: flex; |
| 6076 | 5912 | align-items: center; |
| 6077 | 5913 | } |
| 6078 | 5914 | .elementor-template-library-template-local .elementor-template-library-template-controls > div, |
| 6079 | -.elementor-template-library-template-local .elementor-template-library-template-controls > button, | |
| 6080 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-controls > div, | |
| 6081 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-controls > button { | |
| 5915 | +.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-controls > div { | |
| 6082 | 5916 | cursor: pointer; |
| 6083 | 5917 | transition: color 0.5s; |
| 6084 | 5918 | } |
| 6085 | 5919 | .elementor-template-library-template-local .elementor-template-library-template-insert.disabled, |
| @@ -6164,18 +5998,18 @@ | ||
| 6164 | 5998 | #elementor-template-library-save-template-form > * { |
| 6165 | 5999 | height: 55px; |
| 6166 | 6000 | font-size: 16px; |
| 6167 | 6001 | } |
| 6002 | +#elementor-template-library-save-template-form .cloud-library-form-inputs { | |
| 6003 | + display: block; | |
| 6004 | + width: 500px; | |
| 6005 | + margin: 0 auto; | |
| 6006 | +} | |
| 6168 | 6007 | #elementor-template-library-save-template-form .cloud-library-form-inputs > * { |
| 6169 | 6008 | height: 55px; |
| 6170 | 6009 | font-size: 16px; |
| 6171 | 6010 | margin-block-end: 15px; |
| 6172 | 6011 | } |
| 6173 | -#elementor-template-library-save-template-form .cloud-library-form-inputs { | |
| 6174 | - display: block; | |
| 6175 | - width: 500px; | |
| 6176 | - margin: 0 auto; | |
| 6177 | -} | |
| 6178 | 6012 | #elementor-template-library-save-template-form .cloud-library-form-inputs .upgrade-tooltip, |
| 6179 | 6013 | #elementor-template-library-save-template-form .cloud-library-form-inputs .connect-badge { |
| 6180 | 6014 | display: none; |
| 6181 | 6015 | } |
| @@ -6201,24 +6035,15 @@ | ||
| 6201 | 6035 | #elementor-template-library-save-template-form .cloud-library-form-inputs .ellipsis-container { |
| 6202 | 6036 | display: inline; |
| 6203 | 6037 | background: var(--e-a-bg-hover); |
| 6204 | 6038 | padding: 0 2px 1px; |
| 6205 | - border: none; | |
| 6206 | 6039 | border-radius: 2px; |
| 6207 | 6040 | vertical-align: bottom; |
| 6208 | 6041 | cursor: pointer; |
| 6209 | - font-family: inherit; | |
| 6210 | - font-size: inherit; | |
| 6211 | - color: inherit; | |
| 6212 | - line-height: inherit; | |
| 6213 | 6042 | } |
| 6214 | 6043 | #elementor-template-library-save-template-form .cloud-library-form-inputs .ellipsis-container:hover { |
| 6215 | 6044 | background: var(--e-a-bg-active); |
| 6216 | 6045 | } |
| 6217 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .ellipsis-container:focus-visible { | |
| 6218 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 6219 | - outline-offset: 2px; | |
| 6220 | -} | |
| 6221 | 6046 | #elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .upgrade-tooltip, |
| 6222 | 6047 | #elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .connect-badge, |
| 6223 | 6048 | #elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .upgrade-badge, #elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .upgrade-tooltip, |
| 6224 | 6049 | #elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .connect-badge, |
| @@ -6271,9 +6096,9 @@ | ||
| 6271 | 6096 | position: relative; |
| 6272 | 6097 | } |
| 6273 | 6098 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections input[type=checkbox]:checked { |
| 6274 | 6099 | background: #69727D; |
| 6275 | - inset-block-start: -3px; | |
| 6100 | + top: -3px; | |
| 6276 | 6101 | position: relative; |
| 6277 | 6102 | } |
| 6278 | 6103 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input { |
| 6279 | 6104 | position: relative; |
| @@ -6282,22 +6107,18 @@ | ||
| 6282 | 6107 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input.cloud, #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input.local { |
| 6283 | 6108 | white-space: nowrap; |
| 6284 | 6109 | text-overflow: ellipsis; |
| 6285 | 6110 | overflow: hidden; |
| 6286 | - overflow: visible; | |
| 6287 | - display: inline-flex; | |
| 6288 | - align-items: baseline; | |
| 6289 | 6111 | line-height: 27px; |
| 6290 | 6112 | } |
| 6291 | 6113 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #cloud, |
| 6292 | 6114 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #local { |
| 6293 | - flex-shrink: 0; | |
| 6294 | 6115 | position: relative; |
| 6295 | - inset-block-start: 2px; | |
| 6116 | + top: 2px; | |
| 6296 | 6117 | } |
| 6297 | 6118 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #cloud:checked, |
| 6298 | 6119 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #local:checked { |
| 6299 | - inset-block-start: -2px; | |
| 6120 | + top: -2px; | |
| 6300 | 6121 | } |
| 6301 | 6122 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .eicon-ellipsis-h { |
| 6302 | 6123 | vertical-align: bottom; |
| 6303 | 6124 | } |
| @@ -6308,26 +6129,15 @@ | ||
| 6308 | 6129 | } |
| 6309 | 6130 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .selected-folder { |
| 6310 | 6131 | display: none; |
| 6311 | 6132 | margin-inline-end: 5px; |
| 6312 | - align-items: baseline; | |
| 6313 | - white-space: nowrap; | |
| 6314 | - text-overflow: ellipsis; | |
| 6315 | - overflow: hidden; | |
| 6316 | 6133 | } |
| 6317 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .selected-folder[style*="display: inline"] { | |
| 6318 | - display: inline-flex !important; | |
| 6319 | -} | |
| 6320 | 6134 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .selected-folder-text { |
| 6321 | 6135 | text-decoration: underline; |
| 6322 | 6136 | cursor: pointer; |
| 6323 | - white-space: nowrap; | |
| 6324 | - text-overflow: ellipsis; | |
| 6325 | - overflow: hidden; | |
| 6326 | 6137 | } |
| 6327 | 6138 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .eicon-editor-close { |
| 6328 | 6139 | cursor: pointer; |
| 6329 | - flex-shrink: 0; | |
| 6330 | 6140 | } |
| 6331 | 6141 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #elementor-template-library-connect__badge { |
| 6332 | 6142 | color: var(--e-a-color-primary-bold); |
| 6333 | 6143 | font-size: 14px; |
| @@ -6337,9 +6147,9 @@ | ||
| 6337 | 6147 | } |
| 6338 | 6148 | #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown { |
| 6339 | 6149 | display: none; |
| 6340 | 6150 | position: absolute; |
| 6341 | - inset-block-start: 40px; | |
| 6151 | + top: 40px; | |
| 6342 | 6152 | background-color: var(--e-a-bg-default); |
| 6343 | 6153 | min-width: 187px; |
| 6344 | 6154 | overflow: auto; |
| 6345 | 6155 | box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); |
| @@ -6363,9 +6173,8 @@ | ||
| 6363 | 6173 | } |
| 6364 | 6174 | #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item { |
| 6365 | 6175 | padding: 5px 15px; |
| 6366 | 6176 | cursor: pointer; |
| 6367 | - list-style: none; | |
| 6368 | 6177 | } |
| 6369 | 6178 | #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item[data-id="0"] .eicon-folder-o { |
| 6370 | 6179 | display: none; |
| 6371 | 6180 | } |
| @@ -6374,15 +6183,11 @@ | ||
| 6374 | 6183 | } |
| 6375 | 6184 | #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item[data-id="0"] { |
| 6376 | 6185 | text-decoration: underline; |
| 6377 | 6186 | } |
| 6378 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item:hover, #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item.selected, #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item:focus { | |
| 6187 | +#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 { | |
| 6379 | 6188 | background: var(--e-a-border-color); |
| 6380 | 6189 | } |
| 6381 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item:focus-visible { | |
| 6382 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 6383 | - outline-offset: -2px; | |
| 6384 | -} | |
| 6385 | 6190 | #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item.disabled { |
| 6386 | 6191 | pointer-events: none; |
| 6387 | 6192 | opacity: 0.3; |
| 6388 | 6193 | } |
| @@ -6388,9 +6193,10 @@ | ||
| 6388 | 6193 | } |
| 6389 | 6194 | #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .no-results { |
| 6390 | 6195 | text-align: center; |
| 6391 | 6196 | font-size: 13px; |
| 6392 | - margin: 0 20px; | |
| 6197 | + width: 155px; | |
| 6198 | + margin: 0 auto; | |
| 6393 | 6199 | padding-block: 15px; |
| 6394 | 6200 | pointer-events: none; |
| 6395 | 6201 | } |
| 6396 | 6202 | #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .no-results i { |
| @@ -6404,259 +6210,8 @@ | ||
| 6404 | 6210 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input.disabled { |
| 6405 | 6211 | pointer-events: none; |
| 6406 | 6212 | opacity: 0.3; |
| 6407 | 6213 | } |
| 6408 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b { | |
| 6409 | - display: flex; | |
| 6410 | - flex-direction: column; | |
| 6411 | - width: 600px; | |
| 6412 | - text-align: start; | |
| 6413 | -} | |
| 6414 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .template-name-label, | |
| 6415 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .save-location-label { | |
| 6416 | - font-size: 12px; | |
| 6417 | - font-weight: 400; | |
| 6418 | - color: var(--e-a-color-txt); | |
| 6419 | -} | |
| 6420 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b #elementor-template-library-save-template-name { | |
| 6421 | - width: 100%; | |
| 6422 | - padding: 12px 15px; | |
| 6423 | - border: var(--e-a-border-bold); | |
| 6424 | - border-radius: 3px; | |
| 6425 | - margin-block-end: 0; | |
| 6426 | -} | |
| 6427 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections { | |
| 6428 | - border: none; | |
| 6429 | - padding: 0; | |
| 6430 | - gap: 12px; | |
| 6431 | - margin-block-start: 20px; | |
| 6432 | -} | |
| 6433 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input { | |
| 6434 | - display: flex; | |
| 6435 | - align-items: center; | |
| 6436 | - padding: 12px 15px; | |
| 6437 | - border: var(--e-a-border-bold); | |
| 6438 | - border-radius: 3px; | |
| 6439 | - width: 100%; | |
| 6440 | - line-height: normal; | |
| 6441 | - gap: 8px; | |
| 6442 | -} | |
| 6443 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input:has(input[type=checkbox]:checked) { | |
| 6444 | - border-color: var(--e-a-color-txt); | |
| 6445 | -} | |
| 6446 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input.cloud, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input.local { | |
| 6447 | - display: flex; | |
| 6448 | -} | |
| 6449 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input input[type=checkbox] { | |
| 6450 | - margin-inline-end: 0; | |
| 6451 | - flex-shrink: 0; | |
| 6452 | - position: relative; | |
| 6453 | -} | |
| 6454 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input input[type=checkbox]:checked { | |
| 6455 | - inset-block-start: 0; | |
| 6456 | -} | |
| 6457 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input input[type=checkbox]::after { | |
| 6458 | - content: ""; | |
| 6459 | - position: absolute; | |
| 6460 | - inset-inline-end: -8px; | |
| 6461 | - width: 1px; | |
| 6462 | - height: 18px; | |
| 6463 | - background-color: var(--e-a-border-color); | |
| 6464 | -} | |
| 6465 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input > i:first-of-type { | |
| 6466 | - margin-inline-start: 12px; | |
| 6467 | - margin-inline-end: 4px; | |
| 6468 | - font-size: 24px; | |
| 6469 | - color: var(--e-a-color-txt); | |
| 6470 | -} | |
| 6471 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input > svg:first-of-type { | |
| 6472 | - margin-inline-start: 8px; | |
| 6473 | - margin-inline-end: 0; | |
| 6474 | - font-size: 24px; | |
| 6475 | - color: var(--e-a-color-txt); | |
| 6476 | -} | |
| 6477 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input label { | |
| 6478 | - flex: 0 0 auto; | |
| 6479 | - margin: 0; | |
| 6480 | - cursor: pointer; | |
| 6481 | -} | |
| 6482 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .divider { | |
| 6483 | - margin-inline: 0; | |
| 6484 | -} | |
| 6485 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .ellipsis-container { | |
| 6486 | - display: inline; | |
| 6487 | - background: transparent; | |
| 6488 | - padding: 0; | |
| 6489 | - border-radius: 0; | |
| 6490 | - vertical-align: baseline; | |
| 6491 | - text-decoration: underline; | |
| 6492 | - cursor: pointer; | |
| 6493 | - margin-inline-start: 0; | |
| 6494 | -} | |
| 6495 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .ellipsis-container:hover { | |
| 6496 | - background: transparent; | |
| 6497 | -} | |
| 6498 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .select-folder-link { | |
| 6499 | - color: var(--e-a-color-primary-bold); | |
| 6500 | - text-decoration: underline; | |
| 6501 | - cursor: pointer; | |
| 6502 | - margin-inline-start: 4px; | |
| 6503 | -} | |
| 6504 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .select-folder-link:hover { | |
| 6505 | - text-decoration: none; | |
| 6506 | -} | |
| 6507 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge { | |
| 6508 | - display: none; | |
| 6509 | - border: none; | |
| 6510 | - padding: 0; | |
| 6511 | - border-radius: 0; | |
| 6512 | - margin-inline-start: 0; | |
| 6513 | - background: transparent; | |
| 6514 | - transition: background-color 0.2s; | |
| 6515 | - padding: 3px 8px; | |
| 6516 | -} | |
| 6517 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge:hover { | |
| 6518 | - background-color: var(--e-a-btn-bg-primary-hover); | |
| 6519 | - border-radius: 3px; | |
| 6520 | -} | |
| 6521 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge a { | |
| 6522 | - color: var(--e-a-btn-bg-accent); | |
| 6523 | - text-decoration: none; | |
| 6524 | - display: flex; | |
| 6525 | - align-items: center; | |
| 6526 | - gap: 4px; | |
| 6527 | - font-size: 14px; | |
| 6528 | - font-weight: 500; | |
| 6529 | -} | |
| 6530 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge a i { | |
| 6531 | - margin: 0; | |
| 6532 | - font-size: 14px; | |
| 6533 | -} | |
| 6534 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge { | |
| 6535 | - display: none; | |
| 6536 | -} | |
| 6537 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge .connect-divider { | |
| 6538 | - color: var(--e-a-color-txt-muted); | |
| 6539 | - margin-inline: 5px; | |
| 6540 | -} | |
| 6541 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge a { | |
| 6542 | - color: var(--e-a-color-info); | |
| 6543 | - text-decoration: underline; | |
| 6544 | -} | |
| 6545 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge a:hover { | |
| 6546 | - text-decoration: none; | |
| 6547 | -} | |
| 6548 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge { | |
| 6549 | - display: flex; | |
| 6550 | - align-items: center; | |
| 6551 | - gap: 6px; | |
| 6552 | - padding: 6px 12px; | |
| 6553 | - border: none; | |
| 6554 | - border-radius: 20px; | |
| 6555 | - font-size: 14px; | |
| 6556 | - font-weight: 500; | |
| 6557 | - cursor: pointer; | |
| 6558 | - transition: opacity 0.2s; | |
| 6559 | - margin-inline-start: auto; | |
| 6560 | -} | |
| 6561 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge:hover { | |
| 6562 | - opacity: 0.8; | |
| 6563 | -} | |
| 6564 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge i { | |
| 6565 | - margin: 0; | |
| 6566 | - font-size: 14px; | |
| 6567 | -} | |
| 6568 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.cloud-account-badge { | |
| 6569 | - background-color: var(--e-a-bg-info); | |
| 6570 | - color: var(--e-a-color-info); | |
| 6571 | -} | |
| 6572 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.cloud-account-badge i { | |
| 6573 | - color: var(--e-a-color-info); | |
| 6574 | -} | |
| 6575 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.site-account-badge { | |
| 6576 | - background-color: var(--e-a-bg-warning); | |
| 6577 | - color: var(--e-a-btn-bg-warning-hover); | |
| 6578 | -} | |
| 6579 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.site-account-badge i { | |
| 6580 | - color: var(--e-a-btn-bg-warning-hover); | |
| 6581 | -} | |
| 6582 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .selected-folder { | |
| 6583 | - display: none; | |
| 6584 | - margin-inline-start: 8px; | |
| 6585 | - align-items: center; | |
| 6586 | - gap: 6px; | |
| 6587 | -} | |
| 6588 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .selected-folder[style*="display: inline"] { | |
| 6589 | - display: inline-flex !important; | |
| 6590 | -} | |
| 6591 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .selected-folder-text { | |
| 6592 | - text-decoration: underline; | |
| 6593 | - cursor: pointer; | |
| 6594 | -} | |
| 6595 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .eicon-editor-close { | |
| 6596 | - cursor: pointer; | |
| 6597 | - font-size: 14px; | |
| 6598 | -} | |
| 6599 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .cloud-folder-selection-dropdown { | |
| 6600 | - inset-block-start: 75px; | |
| 6601 | - inset-inline-start: 230px; | |
| 6602 | -} | |
| 6603 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:not(:has(.connect-badge)) .connect-badge { | |
| 6604 | - display: none; | |
| 6605 | -} | |
| 6606 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) .connect-badge { | |
| 6607 | - display: inline; | |
| 6608 | -} | |
| 6609 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) .upgrade-badge { | |
| 6610 | - display: none; | |
| 6611 | -} | |
| 6612 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) { | |
| 6613 | - border-color: var(--e-a-border-color); | |
| 6614 | -} | |
| 6615 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) > i:first-of-type, | |
| 6616 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) label, | |
| 6617 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) .divider { | |
| 6618 | - color: var(--e-a-color-txt-disabled); | |
| 6619 | -} | |
| 6620 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) input[type=checkbox]::after { | |
| 6621 | - background-color: var(--e-a-color-txt-disabled); | |
| 6622 | -} | |
| 6623 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud { | |
| 6624 | - border-color: var(--e-a-border-color); | |
| 6625 | -} | |
| 6626 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud > i:first-of-type, | |
| 6627 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud label, | |
| 6628 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud .divider, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud > i:first-of-type, | |
| 6629 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud label, | |
| 6630 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud .divider { | |
| 6631 | - color: var(--e-a-color-txt-disabled); | |
| 6632 | -} | |
| 6633 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud input[type=checkbox]::after, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud input[type=checkbox]::after { | |
| 6634 | - background-color: var(--e-a-color-txt-disabled); | |
| 6635 | -} | |
| 6636 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud .upgrade-badge, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud .upgrade-badge { | |
| 6637 | - display: inline-flex; | |
| 6638 | -} | |
| 6639 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud .ellipsis-container, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud .ellipsis-container { | |
| 6640 | - display: none; | |
| 6641 | -} | |
| 6642 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud .divider, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud .divider { | |
| 6643 | - display: block; | |
| 6644 | -} | |
| 6645 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud input[type=checkbox], | |
| 6646 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud label, #elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud input[type=checkbox], | |
| 6647 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud label { | |
| 6648 | - pointer-events: none; | |
| 6649 | -} | |
| 6650 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .quota-cta { | |
| 6651 | - display: block; | |
| 6652 | - margin-block-start: 15px; | |
| 6653 | -} | |
| 6654 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b #elementor-template-library-save-template-submit { | |
| 6655 | - align-self: center; | |
| 6656 | - margin-block-start: 20px; | |
| 6657 | - float: none; | |
| 6658 | -} | |
| 6659 | 6214 | |
| 6660 | 6215 | #elementor-template-library-save-template-name { |
| 6661 | 6216 | width: 500px; |
| 6662 | 6217 | padding-inline-start: 25px; |
| @@ -6750,11 +6305,11 @@ | ||
| 6750 | 6305 | } |
| 6751 | 6306 | |
| 6752 | 6307 | .elementor-template-library-blank-footer { |
| 6753 | 6308 | position: absolute; |
| 6754 | - inset-block-end: 70px; | |
| 6755 | - inset-inline-start: 50%; | |
| 6756 | - transform: translateX(calc(-50% * var(--direction-multiplier))); | |
| 6309 | + bottom: 70px; | |
| 6310 | + left: 50%; | |
| 6311 | + transform: translateX(-50%); | |
| 6757 | 6312 | font-style: italic; |
| 6758 | 6313 | color: var(--e-a-color-txt-muted); |
| 6759 | 6314 | } |
| 6760 | 6315 | @media (max-height: 700px) { |
| @@ -6787,11 +6342,9 @@ | ||
| 6787 | 6342 | margin-block-start: 10px; |
| 6788 | 6343 | } |
| 6789 | 6344 | |
| 6790 | 6345 | #elementor-library--infotip__dialog, |
| 6791 | -#elementor-library--connect_infotip__dialog, | |
| 6792 | -#elementor-library--cloud-upgrade__dialog, | |
| 6793 | -#elementor-library--site-info__dialog { | |
| 6346 | +#elementor-library--connect_infotip__dialog { | |
| 6794 | 6347 | position: absolute; |
| 6795 | 6348 | z-index: 10000; |
| 6796 | 6349 | background-color: var(--e-a-bg-default); |
| 6797 | 6350 | box-shadow: var(--e-a-popover-shadow); |
| @@ -6796,39 +6349,19 @@ | ||
| 6796 | 6349 | background-color: var(--e-a-bg-default); |
| 6797 | 6350 | box-shadow: var(--e-a-popover-shadow); |
| 6798 | 6351 | border-radius: var(--e-a-border-radius); |
| 6799 | 6352 | } |
| 6800 | -#elementor-library--infotip__dialog.variant-b, | |
| 6801 | -#elementor-library--connect_infotip__dialog.variant-b, | |
| 6802 | -#elementor-library--cloud-upgrade__dialog.variant-b, | |
| 6803 | -#elementor-library--site-info__dialog.variant-b { | |
| 6804 | - width: 200px; | |
| 6805 | - color: var(--e-a-color-txt-invert); | |
| 6806 | - background-color: var(--e-a-bg-secondary); | |
| 6807 | -} | |
| 6808 | -#elementor-library--infotip__dialog.variant-b .dialog-message, | |
| 6809 | -#elementor-library--connect_infotip__dialog.variant-b .dialog-message, | |
| 6810 | -#elementor-library--cloud-upgrade__dialog.variant-b .dialog-message, | |
| 6811 | -#elementor-library--site-info__dialog.variant-b .dialog-message { | |
| 6812 | - padding: 4px 8px 4px 8px; | |
| 6813 | -} | |
| 6814 | 6353 | #elementor-library--infotip__dialog__title, |
| 6815 | -#elementor-library--connect_infotip__dialog__title, | |
| 6816 | -#elementor-library--cloud-upgrade__dialog__title, | |
| 6817 | -#elementor-library--site-info__dialog__title { | |
| 6354 | +#elementor-library--connect_infotip__dialog__title { | |
| 6818 | 6355 | font-size: 14px; |
| 6819 | 6356 | } |
| 6820 | 6357 | #elementor-library--infotip__dialog .dialog-buttons-wrapper, |
| 6821 | -#elementor-library--connect_infotip__dialog .dialog-buttons-wrapper, | |
| 6822 | -#elementor-library--cloud-upgrade__dialog .dialog-buttons-wrapper, | |
| 6823 | -#elementor-library--site-info__dialog .dialog-buttons-wrapper { | |
| 6358 | +#elementor-library--connect_infotip__dialog .dialog-buttons-wrapper { | |
| 6824 | 6359 | padding: 10px 0 10px 10px; |
| 6825 | 6360 | float: inline-end; |
| 6826 | 6361 | } |
| 6827 | 6362 | #elementor-library--infotip__dialog .dialog-button, |
| 6828 | -#elementor-library--connect_infotip__dialog .dialog-button, | |
| 6829 | -#elementor-library--cloud-upgrade__dialog .dialog-button, | |
| 6830 | -#elementor-library--site-info__dialog .dialog-button { | |
| 6363 | +#elementor-library--connect_infotip__dialog .dialog-button { | |
| 6831 | 6364 | padding: 7px 25px; |
| 6832 | 6365 | font-size: 13px; |
| 6833 | 6366 | background: none; |
| 6834 | 6367 | color: var(--e-a-btn-bg-accent); |
| @@ -6836,11 +6369,9 @@ | ||
| 6836 | 6369 | font-weight: 500; |
| 6837 | 6370 | cursor: pointer; |
| 6838 | 6371 | } |
| 6839 | 6372 | #elementor-library--infotip__dialog:after, |
| 6840 | -#elementor-library--connect_infotip__dialog:after, | |
| 6841 | -#elementor-library--cloud-upgrade__dialog:after, | |
| 6842 | -#elementor-library--site-info__dialog:after { | |
| 6373 | +#elementor-library--connect_infotip__dialog:after { | |
| 6843 | 6374 | content: ""; |
| 6844 | 6375 | position: absolute; |
| 6845 | 6376 | inset-inline-end: 46%; |
| 6846 | 6377 | transform: scaleX(0.7); |
| @@ -6853,14 +6384,11 @@ | ||
| 6853 | 6384 | #elementor-library--infotip__dialog .dialog-message { |
| 6854 | 6385 | padding: 20px 20px 0px 20px; |
| 6855 | 6386 | } |
| 6856 | 6387 | #elementor-library--infotip__dialog:after { |
| 6857 | - inset-block-start: 100%; | |
| 6858 | - border-block-start-color: var(--e-a-bg-default); | |
| 6388 | + top: 100%; | |
| 6389 | + border-top-color: var(--e-a-bg-default); | |
| 6859 | 6390 | } |
| 6860 | -#elementor-library--infotip__dialog.variant-b:after { | |
| 6861 | - border-block-start-color: var(--e-a-bg-secondary); | |
| 6862 | -} | |
| 6863 | 6391 | |
| 6864 | 6392 | #elementor-library--connect_infotip__dialog { |
| 6865 | 6393 | width: 265px; |
| 6866 | 6394 | } |
| @@ -6866,207 +6394,13 @@ | ||
| 6866 | 6394 | } |
| 6867 | 6395 | #elementor-library--connect_infotip__dialog .dialog-message { |
| 6868 | 6396 | padding: 20px; |
| 6869 | 6397 | } |
| 6870 | -#elementor-library--connect_infotip__dialog:not(.variant-b):after { | |
| 6871 | - inset-block-end: 100%; | |
| 6872 | - border-block-end-color: var(--e-a-bg-default); | |
| 6398 | +#elementor-library--connect_infotip__dialog:after { | |
| 6399 | + bottom: 100%; | |
| 6400 | + border-bottom-color: var(--e-a-bg-default); | |
| 6873 | 6401 | } |
| 6874 | -#elementor-library--connect_infotip__dialog.variant-b:after { | |
| 6875 | - border-block-start-color: var(--e-a-bg-secondary); | |
| 6876 | - inset-block-start: 100%; | |
| 6877 | -} | |
| 6878 | -#elementor-library--connect_infotip__dialog.variant-b { | |
| 6879 | - width: 265px; | |
| 6880 | -} | |
| 6881 | 6402 | |
| 6882 | -#elementor-library--cloud-upgrade__dialog { | |
| 6883 | - width: 265px; | |
| 6884 | -} | |
| 6885 | -#elementor-library--cloud-upgrade__dialog:after { | |
| 6886 | - inset-block-start: 100%; | |
| 6887 | - border-block-start-color: var(--e-a-bg-default); | |
| 6888 | -} | |
| 6889 | -#elementor-library--cloud-upgrade__dialog.variant-b:after { | |
| 6890 | - border-block-start-color: var(--e-a-bg-secondary); | |
| 6891 | -} | |
| 6892 | - | |
| 6893 | -#elementor-library--site-info__dialog { | |
| 6894 | - width: 265px; | |
| 6895 | -} | |
| 6896 | -#elementor-library--site-info__dialog:after { | |
| 6897 | - inset-block-start: 100%; | |
| 6898 | - border-block-start-color: var(--e-a-bg-default); | |
| 6899 | -} | |
| 6900 | -#elementor-library--site-info__dialog.variant-b:after { | |
| 6901 | - border-block-start-color: var(--e-a-bg-secondary); | |
| 6902 | -} | |
| 6903 | - | |
| 6904 | -.elementor-global-styles-dialog { | |
| 6905 | - --gsd-color-text-primary: #0c0d0e; | |
| 6906 | - --gsd-color-text-secondary: #3f444b; | |
| 6907 | - --gsd-color-text-tertiary: #69727D; | |
| 6908 | - --gsd-color-divider: rgba(0, 0, 0, 0.12); | |
| 6909 | - --gsd-color-primary-main: #f0abfc; | |
| 6910 | - --gsd-color-primary-hover: #e879f9; | |
| 6911 | - --gsd-color-secondary-main: #515962; | |
| 6912 | - --gsd-border-radius: 4px; | |
| 6913 | - --gsd-spacing-horizontal: 24px; | |
| 6914 | - --gsd-font-family: 'Roboto', sans-serif; | |
| 6915 | - padding: 16px 0 0; | |
| 6916 | - min-width: 444px; | |
| 6917 | -} | |
| 6918 | -.elementor-global-styles-dialog__header { | |
| 6919 | - padding: 10px var(--gsd-spacing-horizontal) 0; | |
| 6920 | - margin-block-end: 16px; | |
| 6921 | -} | |
| 6922 | -.elementor-global-styles-dialog__header h2 { | |
| 6923 | - margin: 0 0 4px; | |
| 6924 | - font-family: var(--gsd-font-family); | |
| 6925 | - font-size: 16px; | |
| 6926 | - font-weight: 500; | |
| 6927 | - line-height: 1.3; | |
| 6928 | - color: var(--gsd-color-text-primary); | |
| 6929 | - letter-spacing: 0.15px; | |
| 6930 | -} | |
| 6931 | -.elementor-global-styles-dialog__header p { | |
| 6932 | - margin: 0; | |
| 6933 | - font-family: var(--gsd-font-family); | |
| 6934 | - font-size: 14px; | |
| 6935 | - font-weight: 400; | |
| 6936 | - line-height: 20px; | |
| 6937 | - color: var(--gsd-color-text-secondary); | |
| 6938 | - letter-spacing: 0.15px; | |
| 6939 | -} | |
| 6940 | -.elementor-global-styles-dialog__options { | |
| 6941 | - display: flex; | |
| 6942 | - flex-direction: column; | |
| 6943 | - gap: 12px; | |
| 6944 | - padding: 0 var(--gsd-spacing-horizontal); | |
| 6945 | -} | |
| 6946 | -.elementor-global-styles-dialog__radio-card { | |
| 6947 | - display: flex; | |
| 6948 | - gap: 0; | |
| 6949 | - padding: 12px 8px; | |
| 6950 | - border: 1px solid var(--gsd-color-divider); | |
| 6951 | - border-radius: var(--gsd-border-radius); | |
| 6952 | - cursor: pointer; | |
| 6953 | - transition: border-color 0.2s ease; | |
| 6954 | -} | |
| 6955 | -.elementor-global-styles-dialog__radio-card:has(input[type=radio]:checked) { | |
| 6956 | - border: 2px solid var(--gsd-color-text-primary); | |
| 6957 | - padding: 11px 7px; | |
| 6958 | -} | |
| 6959 | -.elementor-global-styles-dialog__radio-card input[type=radio] { | |
| 6960 | - flex-shrink: 0; | |
| 6961 | - width: 20px; | |
| 6962 | - height: 20px; | |
| 6963 | - margin: 9px; | |
| 6964 | - cursor: pointer; | |
| 6965 | - color: var(--gsd-color-text-tertiary); | |
| 6966 | - accent-color: var(--gsd-color-text-primary); | |
| 6967 | -} | |
| 6968 | -.elementor-global-styles-dialog__radio-card-content { | |
| 6969 | - display: flex; | |
| 6970 | - align-items: flex-start; | |
| 6971 | - flex-direction: column; | |
| 6972 | - flex: 1; | |
| 6973 | -} | |
| 6974 | -.elementor-global-styles-dialog__radio-label { | |
| 6975 | - font-family: var(--gsd-font-family); | |
| 6976 | - font-size: 14px; | |
| 6977 | - font-weight: 500; | |
| 6978 | - line-height: 18px; | |
| 6979 | - color: var(--gsd-color-text-primary); | |
| 6980 | - letter-spacing: 0.15px; | |
| 6981 | -} | |
| 6982 | -.elementor-global-styles-dialog__radio-description { | |
| 6983 | - font-family: var(--gsd-font-family); | |
| 6984 | - font-size: 12px; | |
| 6985 | - font-weight: 400; | |
| 6986 | - line-height: 20px; | |
| 6987 | - color: var(--gsd-color-text-secondary); | |
| 6988 | - letter-spacing: 0.4px; | |
| 6989 | -} | |
| 6990 | -.elementor-global-styles-dialog__checkbox-container { | |
| 6991 | - display: flex; | |
| 6992 | - align-items: flex-start; | |
| 6993 | - gap: 4px; | |
| 6994 | - padding: 0; | |
| 6995 | - margin-block-start: 0; | |
| 6996 | -} | |
| 6997 | -.elementor-global-styles-dialog__checkbox-option { | |
| 6998 | - display: flex; | |
| 6999 | - align-items: flex-start; | |
| 7000 | - gap: 4px; | |
| 7001 | - cursor: pointer; | |
| 7002 | -} | |
| 7003 | -.elementor-global-styles-dialog__checkbox-option input[type=checkbox] { | |
| 7004 | - width: 18px; | |
| 7005 | - height: 18px; | |
| 7006 | - margin: 4px; | |
| 7007 | - cursor: pointer; | |
| 7008 | -} | |
| 7009 | -.elementor-global-styles-dialog__checkbox-option input[type=checkbox]:checked { | |
| 7010 | - background-color: var(--gsd-color-text-tertiary); | |
| 7011 | -} | |
| 7012 | -.elementor-global-styles-dialog__checkbox-label { | |
| 7013 | - font-family: var(--gsd-font-family); | |
| 7014 | - font-size: 12px; | |
| 7015 | - font-weight: 400; | |
| 7016 | - line-height: 1.43; | |
| 7017 | - color: var(--gsd-color-text-primary); | |
| 7018 | - letter-spacing: 0.15px; | |
| 7019 | - padding-block-start: 4px; | |
| 7020 | - margin-inline-start: 4px; | |
| 7021 | -} | |
| 7022 | -.elementor-global-styles-dialog__checkbox-label a { | |
| 7023 | - color: #2563eb; | |
| 7024 | - text-decoration: underline; | |
| 7025 | -} | |
| 7026 | -.elementor-global-styles-dialog__checkbox-label a:hover { | |
| 7027 | - color: #2563eb; | |
| 7028 | -} | |
| 7029 | -.elementor-global-styles-dialog__footer { | |
| 7030 | - display: flex; | |
| 7031 | - justify-content: flex-end; | |
| 7032 | - align-items: center; | |
| 7033 | - gap: 8px; | |
| 7034 | - padding: 16px var(--gsd-spacing-horizontal); | |
| 7035 | -} | |
| 7036 | -.elementor-global-styles-dialog__button-cancel { | |
| 7037 | - padding: 6px 8px; | |
| 7038 | - font-family: var(--gsd-font-family); | |
| 7039 | - font-size: 15px; | |
| 7040 | - font-weight: 500; | |
| 7041 | - line-height: 24px; | |
| 7042 | - letter-spacing: 0.4px; | |
| 7043 | - color: var(--gsd-color-secondary-main); | |
| 7044 | - background: transparent; | |
| 7045 | - border: none; | |
| 7046 | - border-radius: var(--gsd-border-radius); | |
| 7047 | - cursor: pointer; | |
| 7048 | -} | |
| 7049 | -.elementor-global-styles-dialog__button-cancel:hover { | |
| 7050 | - background: rgba(0, 0, 0, 0.04); | |
| 7051 | -} | |
| 7052 | -.elementor-global-styles-dialog__button-insert { | |
| 7053 | - padding: 6px 16px; | |
| 7054 | - font-family: var(--gsd-font-family); | |
| 7055 | - font-size: 15px; | |
| 7056 | - font-weight: 500; | |
| 7057 | - line-height: 24px; | |
| 7058 | - letter-spacing: 0.4px; | |
| 7059 | - color: var(--gsd-color-text-primary); | |
| 7060 | - background: var(--gsd-color-primary-main); | |
| 7061 | - border: none; | |
| 7062 | - border-radius: var(--gsd-border-radius); | |
| 7063 | - cursor: pointer; | |
| 7064 | -} | |
| 7065 | -.elementor-global-styles-dialog__button-insert:hover { | |
| 7066 | - background: var(--gsd-color-primary-hover); | |
| 7067 | -} | |
| 7068 | - | |
| 7069 | 6403 | .elementor-tags-list { |
| 7070 | 6404 | display: none; |
| 7071 | 6405 | position: absolute; |
| 7072 | 6406 | width: 260px; |
| @@ -7250,14 +6584,8 @@ | ||
| 7250 | 6584 | cursor: default; |
| 7251 | 6585 | opacity: 0.5; |
| 7252 | 6586 | color: var(--e-a-color-disabled); |
| 7253 | 6587 | } |
| 7254 | -.elementor-context-menu-list__item--disabled.elementor-context-menu-list__item--has-shortcut-action { | |
| 7255 | - opacity: 1; | |
| 7256 | -} | |
| 7257 | -.elementor-context-menu-list__item--disabled.elementor-context-menu-list__item--has-shortcut-action > :not(.elementor-context-menu-list__item__shortcut) { | |
| 7258 | - opacity: 0.5; | |
| 7259 | -} | |
| 7260 | 6588 | .elementor-context-menu-list__item:not(.elementor-context-menu-list__item--disabled):hover, .elementor-context-menu-list__item:not(.elementor-context-menu-list__item--disabled):focus { |
| 7261 | 6589 | background-color: var(--e-a-bg-hover); |
| 7262 | 6590 | color: var(--e-a-color-hover); |
| 7263 | 6591 | } |
| @@ -7286,20 +6614,8 @@ | ||
| 7286 | 6614 | color: var(--e-a-color-primary-bold); |
| 7287 | 6615 | border-radius: 10px; |
| 7288 | 6616 | font-size: 10px; |
| 7289 | 6617 | } |
| 7290 | -.elementor-context-menu-list__item__shortcut__promotion-badge { | |
| 7291 | - display: flex; | |
| 7292 | - align-items: center; | |
| 7293 | - justify-content: center; | |
| 7294 | - width: 24px; | |
| 7295 | - height: 24px; | |
| 7296 | - border-radius: 50%; | |
| 7297 | - background-color: rgba(214, 16, 124, 0.12); | |
| 7298 | - color: var(--e-a-color-accent-promotion, #D6107C); | |
| 7299 | - font-size: 16px; | |
| 7300 | - cursor: pointer; | |
| 7301 | -} | |
| 7302 | 6618 | .elementor-context-menu-list__item__title, .elementor-context-menu-list__item__shortcut { |
| 7303 | 6619 | font-size: 14px; |
| 7304 | 6620 | font-style: normal; |
| 7305 | 6621 | font-weight: 400; |
| @@ -7697,9 +7013,9 @@ | ||
| 7697 | 7013 | transition: transform 0.5s; |
| 7698 | 7014 | z-index: 91; |
| 7699 | 7015 | } |
| 7700 | 7016 | .elementor-navigator__element__indicators:not(:hover) { |
| 7701 | - transform: translateX(calc(100% * var(--direction-multiplier) - var(--e-editor-navigator-indicator-width) * var(--direction-multiplier))); | |
| 7017 | + transform: translateX(calc(100% * var(--direction-multiplier) - var(--e-editor-navigator-indicator-width))); | |
| 7702 | 7018 | } |
| 7703 | 7019 | .elementor-navigator__element__indicator { |
| 7704 | 7020 | height: 100%; |
| 7705 | 7021 | width: 31px; |
| @@ -7726,9 +7042,9 @@ | ||
| 7726 | 7042 | |
| 7727 | 7043 | .e-notice-bar { |
| 7728 | 7044 | position: absolute; |
| 7729 | 7045 | width: 100%; |
| 7730 | - inset-block-end: 0; | |
| 7046 | + bottom: 0; | |
| 7731 | 7047 | display: flex; |
| 7732 | 7048 | align-items: center; |
| 7733 | 7049 | height: 40px; |
| 7734 | 7050 | color: #fff; |
| @@ -7975,11 +7291,11 @@ | ||
| 7975 | 7291 | flex-direction: column; |
| 7976 | 7292 | align-items: center; |
| 7977 | 7293 | width: 100%; |
| 7978 | 7294 | position: absolute; |
| 7979 | - inset-block-start: 50%; | |
| 7980 | - inset-inline-start: 50%; | |
| 7981 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 7295 | + top: 50%; | |
| 7296 | + left: 50%; | |
| 7297 | + transform: translate(-50%, -50%); | |
| 7982 | 7298 | padding: 1px; |
| 7983 | 7299 | } |
| 7984 | 7300 | .elementor-icons-manager__tab__item__icon { |
| 7985 | 7301 | font-size: 25px; |
| @@ -8023,12 +7339,11 @@ | ||
| 8023 | 7339 | } |
| 8024 | 7340 | .pickr .pcr-button:before, .pickr .pcr-button:after { |
| 8025 | 7341 | height: 12px; |
| 8026 | 7342 | width: 12px; |
| 8027 | - position: absolute; | |
| 8028 | - inset-block-start: 50%; | |
| 8029 | - inset-inline-start: 50%; | |
| 8030 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 7343 | + top: 50%; | |
| 7344 | + left: 50%; | |
| 7345 | + transform: translate(-50%, -50%); | |
| 8031 | 7346 | } |
| 8032 | 7347 | |
| 8033 | 7348 | .pcr-app { |
| 8034 | 7349 | background-color: var(--e-a-bg-default); |
| @@ -8168,9 +7483,9 @@ | ||
| 8168 | 7483 | } |
| 8169 | 7484 | |
| 8170 | 7485 | .select2-selection__arrow { |
| 8171 | 7486 | height: 27px; |
| 8172 | - inset-block-start: 0; | |
| 7487 | + top: 0; | |
| 8173 | 7488 | } |
| 8174 | 7489 | |
| 8175 | 7490 | .select2-results__option[aria-selected=true] { |
| 8176 | 7491 | background-color: var(--e-a-bg-active); |
| @@ -8229,10 +7544,11 @@ | ||
| 8229 | 7544 | padding: 0; |
| 8230 | 7545 | margin: 0; |
| 8231 | 7546 | height: 100px; |
| 8232 | 7547 | position: absolute; |
| 8233 | - inset-block-start: -60px; | |
| 8234 | - inset-inline: 0; | |
| 7548 | + top: -60px; | |
| 7549 | + left: 0; | |
| 7550 | + right: 0; | |
| 8235 | 7551 | } |
| 8236 | 7552 | #elementor-paste-area-dialog #elementor-paste-area-dialog__input:focus { |
| 8237 | 7553 | border-color: transparent; |
| 8238 | 7554 | outline: none; |
| @@ -8257,54 +7573,21 @@ | ||
| 8257 | 7573 | display: block; |
| 8258 | 7574 | margin: 10px -15px; |
| 8259 | 7575 | } |
| 8260 | 7576 | |
| 8261 | -.elementor-app-backdrop { | |
| 8262 | - position: fixed; | |
| 8263 | - z-index: 99998; | |
| 8264 | - inset: 0; | |
| 8265 | - background: rgba(0, 0, 0, 0.5); | |
| 8266 | - opacity: 0; | |
| 8267 | - transition: opacity 0.25s ease; | |
| 8268 | -} | |
| 8269 | -.elementor-app-backdrop--visible { | |
| 8270 | - opacity: 1; | |
| 8271 | -} | |
| 8272 | - | |
| 8273 | -.elementor-app-iframe { | |
| 8274 | - position: fixed; | |
| 8275 | - top: 30px; | |
| 8276 | - left: 40px; | |
| 8277 | - width: calc(100% - 80px); | |
| 8278 | - height: calc(100% - 60px); | |
| 8279 | - z-index: 100000; | |
| 8280 | - border-radius: 12px; | |
| 8281 | - box-shadow: 0 16px 64px rgba(0, 0, 0, 0.3); | |
| 8282 | - background-color: transparent; | |
| 8283 | - opacity: 0; | |
| 8284 | - transition: opacity 0.25s ease; | |
| 8285 | -} | |
| 8286 | -.elementor-app-iframe--visible { | |
| 8287 | - opacity: 1; | |
| 8288 | -} | |
| 8289 | - | |
| 8290 | 7577 | [class^=eicon-flex], [class*=" eicon-flex"] { |
| 8291 | 7578 | transition: 0.3s all; |
| 7579 | + --is-ltr: 1; | |
| 7580 | + --is-rtl: 0; | |
| 7581 | + --rotation-direction: calc(var(--is-ltr) - var(--is-rtl)); | |
| 8292 | 7582 | } |
| 8293 | 7583 | [class^=eicon-flex].eicon-inline, [class*=" eicon-flex"].eicon-inline { |
| 8294 | 7584 | max-height: 1em; |
| 8295 | 7585 | max-width: 1em; |
| 8296 | 7586 | } |
| 8297 | -[class^=eicon-flex], [class*=" eicon-flex"] { | |
| 8298 | - --is-ltr: 1; | |
| 8299 | - --is-rtl: 0; | |
| 8300 | -} | |
| 8301 | 7587 | [class^=eicon-flex]:is(.eicon-justify-start-h, .eicon-justify-end-h), [class*=" eicon-flex"]:is(.eicon-justify-start-h, .eicon-justify-end-h) { |
| 8302 | 7588 | --rotation-direction: calc(var(--is-ltr) + var(--is-rtl)); |
| 8303 | 7589 | } |
| 8304 | -[class^=eicon-flex], [class*=" eicon-flex"] { | |
| 8305 | - --rotation-direction: calc(var(--is-ltr) - var(--is-rtl)); | |
| 8306 | -} | |
| 8307 | 7590 | :is(.e-ui-state--document-direction-mode__column, .e-ui-state--document-direction-mode__column-reverse) [class^=eicon-flex]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow), :is(.e-ui-state--document-direction-mode__column, .e-ui-state--document-direction-mode__column-reverse) [class*=" eicon-flex"]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow) { |
| 8308 | 7591 | transform: rotate(calc(var(--rotation-direction) * 90deg)); |
| 8309 | 7592 | } |
| 8310 | 7593 | :is(.e-ui-state--document-direction-mode__column, .e-ui-state--document-direction-mode__column-reverse) [class^=eicon-flex]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow):is(.eicon-align-start-v, .eicon-align-end-v), :is(.e-ui-state--document-direction-mode__column, .e-ui-state--document-direction-mode__column-reverse) [class*=" eicon-flex"]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow):is(.eicon-align-start-v, .eicon-align-end-v) { |
| @@ -8317,16 +7600,6 @@ | ||
| 8317 | 7600 | transform: rotate(calc(var(--is-rtl) * 180deg)); |
| 8318 | 7601 | } |
| 8319 | 7602 | .e-ui-state--document-direction-mode__row-reverse [class^=eicon-flex]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow):is(.eicon-justify-start-h, .eicon-justify-end-h, .eicon-order-start, .eicon-order-end), .e-ui-state--document-direction-mode__row-reverse [class*=" eicon-flex"]:not(.eicon-wrap):not(.eicon-nowrap):not(.eicon-grow):is(.eicon-justify-start-h, .eicon-justify-end-h, .eicon-order-start, .eicon-order-end) { |
| 8320 | 7603 | transform: rotate(calc(var(--is-ltr) * 180deg)); |
| 8321 | -} | |
| 8322 | - | |
| 8323 | -.elementor-editor-active .embed-media-settings .setting.caption { | |
| 8324 | - display: none; | |
| 8325 | -} | |
| 8326 | -.elementor-editor-active .embed-media-settings .setting.align { | |
| 8327 | - display: none; | |
| 8328 | -} | |
| 8329 | -.elementor-editor-active .embed-media-settings fieldset.setting-group { | |
| 8330 | - display: none; | |
| 8331 | 7604 | } |
| 8332 | 7605 | /*# sourceMappingURL=editor.css.map */ |