| @@ -1,4 +1,5 @@ | ||
| 1 | +/*! elementor - v3.31.0 - 11-08-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 | |
| @@ -1257,20 +1393,8 @@ | ||
| 1257 | 1393 | border-color: var(--e-a-border-color-focus); |
| 1258 | 1394 | padding-inline-end: 15px; |
| 1259 | 1395 | } |
| 1260 | 1396 | |
| 1261 | -.e-free-badge-container { | |
| 1262 | - flex-grow: 1; | |
| 1263 | - margin-inline-start: 10px; | |
| 1264 | - margin-inline-end: 10px; | |
| 1265 | -} | |
| 1266 | -.e-free-badge-container .e-free-badge { | |
| 1267 | - border-radius: var(--e-a-border-radius); | |
| 1268 | - background-color: var(--e-a-btn-bg); | |
| 1269 | - color: var(--e-a-btn-color-invert); | |
| 1270 | - padding: 3px 5px; | |
| 1271 | -} | |
| 1272 | - | |
| 1273 | 1397 | .elementor-panel .elementor-element { |
| 1274 | 1398 | font-family: var(--e-a-font-family); |
| 1275 | 1399 | color: var(--e-a-color-txt); |
| 1276 | 1400 | line-height: 1; |
| @@ -1288,27 +1412,14 @@ | ||
| 1288 | 1412 | -webkit-user-select: none; |
| 1289 | 1413 | -moz-user-select: none; |
| 1290 | 1414 | user-select: none; |
| 1291 | 1415 | } |
| 1292 | -.elementor-panel .elementor-element .eicon-atomic, | |
| 1293 | -.elementor-panel .elementor-element .e-widget-new-badge { | |
| 1416 | +.elementor-panel .elementor-element .eicon-atomic { | |
| 1294 | 1417 | position: absolute; |
| 1295 | - inset-block-start: 4px; | |
| 1296 | - inset-inline-end: 6px; | |
| 1297 | -} | |
| 1298 | -.elementor-panel .elementor-element .eicon-atomic { | |
| 1418 | + inset-block-start: 5px; | |
| 1419 | + inset-inline-end: 5px; | |
| 1299 | 1420 | color: var(--e-a-color-txt); |
| 1300 | 1421 | } |
| 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 | 1422 | .elementor-panel .elementor-element:hover, .elementor-panel .elementor-element:focus { |
| 1312 | 1423 | background-color: var(--e-a-bg-hover); |
| 1313 | 1424 | border-color: var(--e-a-border-color-bold); |
| 1314 | 1425 | } |
| @@ -1314,11 +1425,8 @@ | ||
| 1314 | 1425 | } |
| 1315 | 1426 | .elementor-panel .elementor-element:hover > .eicon-lock, .elementor-panel .elementor-element:focus > .eicon-lock { |
| 1316 | 1427 | color: var(--e-a-color-accent); |
| 1317 | 1428 | } |
| 1318 | -.elementor-panel .elementor-element:hover > .eicon-plug, .elementor-panel .elementor-element:focus > .eicon-plug { | |
| 1319 | - color: var(--e-a-color-info); | |
| 1320 | -} | |
| 1321 | 1429 | .elementor-panel .elementor-element .icon { |
| 1322 | 1430 | font-size: 28px; |
| 1323 | 1431 | padding-block-start: 15px; |
| 1324 | 1432 | } |
| @@ -1330,9 +1438,9 @@ | ||
| 1330 | 1438 | } |
| 1331 | 1439 | .elementor-panel .elementor-element .title { |
| 1332 | 1440 | font-size: 12px; |
| 1333 | 1441 | } |
| 1334 | -.elementor-panel .elementor-element > .eicon-lock, .elementor-panel .elementor-element .eicon-plug { | |
| 1442 | +.elementor-panel .elementor-element > .eicon-lock { | |
| 1335 | 1443 | position: absolute; |
| 1336 | 1444 | inset-block-start: 5px; |
| 1337 | 1445 | inset-inline-end: 5px; |
| 1338 | 1446 | color: var(--e-a-color-txt-disabled); |
| @@ -1445,80 +1553,8 @@ | ||
| 1445 | 1553 | .dialog-tooltip-widget .dialog-tooltip-button::-moz-focus-inner { |
| 1446 | 1554 | border: 0; |
| 1447 | 1555 | } |
| 1448 | 1556 | |
| 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 | 1557 | #elementor-panel-inner { |
| 1522 | 1558 | position: relative; |
| 1523 | 1559 | height: 100%; |
| 1524 | 1560 | display: flex; |
| @@ -1544,54 +1580,18 @@ | ||
| 1544 | 1580 | #elementor-panel-get-pro-elements .elementor-nerd-box-icon { |
| 1545 | 1581 | margin-block-start: 20px; |
| 1546 | 1582 | } |
| 1547 | 1583 | |
| 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 | 1584 | #elementor-panel-get-pro-elements-sticky { |
| 1568 | 1585 | 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 { | |
| 1586 | + bottom: 0; | |
| 1587 | 1587 | font-size: 14px; |
| 1588 | 1588 | font-weight: 400; |
| 1589 | 1589 | line-height: 1.6; |
| 1590 | - background-color: var(--e-a-color-white); | |
| 1590 | + margin-block-end: -10px; | |
| 1591 | 1591 | } |
| 1592 | -#elementor-panel-get-pro-elements-sticky .elementor-get-pro-sticky-message, | |
| 1593 | -.elementor-panel-editor-sticky-promotion .elementor-get-pro-sticky-message { | |
| 1592 | +#elementor-panel-get-pro-elements-sticky .elementor-get-pro-sticky-message { | |
| 1593 | + margin-top: -14px; | |
| 1594 | 1594 | min-height: 40px; |
| 1595 | 1595 | display: block; |
| 1596 | 1596 | padding: 9px min(35px, 5%); |
| 1597 | 1597 | gap: 10px; |
| @@ -1599,18 +1599,16 @@ | ||
| 1599 | 1599 | color: var(--e-a-color-black); |
| 1600 | 1600 | text-align: center; |
| 1601 | 1601 | box-shadow: 0px -10px 14px -6px rgba(0, 0, 0, 0.05); |
| 1602 | 1602 | } |
| 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 { | |
| 1603 | +#elementor-panel-get-pro-elements-sticky .elementor-get-pro-sticky-message a { | |
| 1605 | 1604 | display: inline-block; |
| 1606 | 1605 | font-size: 13px; |
| 1607 | 1606 | font-weight: 500; |
| 1608 | 1607 | color: var(--e-a-btn-bg-accent); |
| 1609 | 1608 | } |
| 1610 | -#elementor-panel-get-pro-elements-sticky img, | |
| 1611 | -.elementor-panel-editor-sticky-promotion img { | |
| 1612 | - margin-inline-start: 17px; | |
| 1609 | +#elementor-panel-get-pro-elements-sticky img { | |
| 1610 | + margin-left: 17px; | |
| 1613 | 1611 | } |
| 1614 | 1612 | |
| 1615 | 1613 | #elementor-panel-notice-wrapper .elementor-panel-notice { |
| 1616 | 1614 | width: 90%; |
| @@ -1637,16 +1635,12 @@ | ||
| 1637 | 1635 | background: var(--e-a-color-primary); |
| 1638 | 1636 | border-radius: 50%; |
| 1639 | 1637 | width: 8px; |
| 1640 | 1638 | height: 8px; |
| 1641 | - inset-block-start: 5px; | |
| 1642 | - inset-inline-end: 5px; | |
| 1639 | + top: 5px; | |
| 1640 | + right: 5px; | |
| 1643 | 1641 | } |
| 1644 | 1642 | |
| 1645 | -#elementor-panel-footer.elementor-panel-footer-back-compat-wrapper { | |
| 1646 | - display: none !important; | |
| 1647 | -} | |
| 1648 | - | |
| 1649 | 1643 | .media-modal.wp-core-ui { |
| 1650 | 1644 | color-scheme: light; |
| 1651 | 1645 | color: #515962; |
| 1652 | 1646 | } |
| @@ -1817,8 +1811,11 @@ | ||
| 1817 | 1811 | background-color: var(--e-a-bg-chip); |
| 1818 | 1812 | border-radius: 100px; |
| 1819 | 1813 | padding: 5px 8px; |
| 1820 | 1814 | } |
| 1815 | +.elementor-panel-heading-category-chip i { | |
| 1816 | + margin-inline-start: 4px; | |
| 1817 | +} | |
| 1821 | 1818 | .elementor-panel-heading-promotion { |
| 1822 | 1819 | margin-inline-start: auto; |
| 1823 | 1820 | } |
| 1824 | 1821 | .elementor-panel-heading-promotion a { |
| @@ -1886,10 +1883,8 @@ | ||
| 1886 | 1883 | .elementor-group-control-attachment_alert .elementor-control-field-description { |
| 1887 | 1884 | margin-block-start: 0; |
| 1888 | 1885 | } |
| 1889 | 1886 | |
| 1890 | -.elementor-control-start-end .eicon-text-align-left, | |
| 1891 | -.elementor-control-start-end .eicon-text-align-right, | |
| 1892 | 1887 | .elementor-control-start-end .eicon-h-align-left, |
| 1893 | 1888 | .elementor-control-start-end .eicon-h-align-right { |
| 1894 | 1889 | scale: calc(1 * var(--direction-multiplier)) 1; |
| 1895 | 1890 | } |
| @@ -1929,9 +1924,9 @@ | ||
| 1929 | 1924 | } |
| 1930 | 1925 | .elementor-control-responsive-switchers__holder { |
| 1931 | 1926 | position: absolute; |
| 1932 | 1927 | width: 100%; |
| 1933 | - inset-block-start: 0; | |
| 1928 | + top: 0; | |
| 1934 | 1929 | background-color: var(--e-a-bg-default); |
| 1935 | 1930 | border-radius: var(--e-a-border-radius); |
| 1936 | 1931 | transition: 0.15s; |
| 1937 | 1932 | border: 1px solid transparent; |
| @@ -2252,9 +2247,9 @@ | ||
| 2252 | 2247 | } |
| 2253 | 2248 | .elementor-control-responsive-switchers__holder { |
| 2254 | 2249 | position: absolute; |
| 2255 | 2250 | width: 100%; |
| 2256 | - inset-block-start: 0; | |
| 2251 | + top: 0; | |
| 2257 | 2252 | background-color: var(--e-a-bg-default); |
| 2258 | 2253 | border-radius: var(--e-a-border-radius); |
| 2259 | 2254 | transition: 0.15s; |
| 2260 | 2255 | border: 1px solid transparent; |
| @@ -2530,9 +2525,9 @@ | ||
| 2530 | 2525 | } |
| 2531 | 2526 | .elementor-control-responsive-switchers__holder { |
| 2532 | 2527 | position: absolute; |
| 2533 | 2528 | width: 100%; |
| 2534 | - inset-block-start: 0; | |
| 2529 | + top: 0; | |
| 2535 | 2530 | background-color: var(--e-a-bg-default); |
| 2536 | 2531 | border-radius: var(--e-a-border-radius); |
| 2537 | 2532 | transition: 0.15s; |
| 2538 | 2533 | border: 1px solid transparent; |
| @@ -2798,11 +2793,11 @@ | ||
| 2798 | 2793 | } |
| 2799 | 2794 | |
| 2800 | 2795 | .elementor-control-type-icons .elementor-control-media__preview > * { |
| 2801 | 2796 | position: absolute; |
| 2802 | - inset-block-start: 50%; | |
| 2803 | - inset-inline-start: 50%; | |
| 2804 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 2797 | + top: 50%; | |
| 2798 | + left: 50%; | |
| 2799 | + transform: translate(-50%, -50%); | |
| 2805 | 2800 | } |
| 2806 | 2801 | .elementor-control-type-icons .elementor-control-media__preview i { |
| 2807 | 2802 | font-size: 70px; |
| 2808 | 2803 | } |
| @@ -3001,19 +2996,8 @@ | ||
| 3001 | 2996 | .e-global__preview-items-container::-webkit-scrollbar-thumb { |
| 3002 | 2997 | background-color: #BABFC5; |
| 3003 | 2998 | border-radius: 10px; |
| 3004 | 2999 | } |
| 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 | 3000 | .e-global__manage-button { |
| 3017 | 3001 | font-weight: 500; |
| 3018 | 3002 | cursor: pointer; |
| 3019 | 3003 | } |
| @@ -3029,9 +3013,9 @@ | ||
| 3029 | 3013 | font-size: 13px; |
| 3030 | 3014 | content: "\e90e"; |
| 3031 | 3015 | position: absolute; |
| 3032 | 3016 | transform: translateY(-50%); |
| 3033 | - inset-block-start: 50%; | |
| 3017 | + top: 50%; | |
| 3034 | 3018 | inset-inline-start: 13px; |
| 3035 | 3019 | } |
| 3036 | 3020 | .e-global__color { |
| 3037 | 3021 | padding: 10px 20px; |
| @@ -3172,11 +3156,11 @@ | ||
| 3172 | 3156 | display: none; |
| 3173 | 3157 | } |
| 3174 | 3158 | .elementor-control-media .eicon-plus-circle { |
| 3175 | 3159 | position: absolute; |
| 3176 | - inset-block-start: 50%; | |
| 3177 | - inset-inline-start: 50%; | |
| 3178 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 3160 | + top: 50%; | |
| 3161 | + left: 50%; | |
| 3162 | + transform: translate(-50%, -50%); | |
| 3179 | 3163 | color: var(--e-a-color-white); |
| 3180 | 3164 | font-size: 20px; |
| 3181 | 3165 | } |
| 3182 | 3166 | .elementor-control-media__content__upload-button { |
| @@ -3199,11 +3183,11 @@ | ||
| 3199 | 3183 | display: none; |
| 3200 | 3184 | } |
| 3201 | 3185 | .elementor-control-media-area .eicon-video-camera { |
| 3202 | 3186 | position: absolute; |
| 3203 | - inset-block-start: 50%; | |
| 3204 | - inset-inline-start: 50%; | |
| 3205 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 3187 | + top: 50%; | |
| 3188 | + left: 50%; | |
| 3189 | + transform: translate(-50%, -50%); | |
| 3206 | 3190 | color: rgba(255, 255, 255, 0.7); |
| 3207 | 3191 | font-size: 21px; |
| 3208 | 3192 | } |
| 3209 | 3193 | .elementor-control-media .elementor-control-media__content { |
| @@ -3219,9 +3203,9 @@ | ||
| 3219 | 3203 | background-color: rgba(0, 0, 0, 0.2); |
| 3220 | 3204 | pointer-events: none; |
| 3221 | 3205 | } |
| 3222 | 3206 | .elementor-control-media .elementor-control-media__content:not(:hover) .elementor-control-media__tools { |
| 3223 | - inset-block-end: -30px; | |
| 3207 | + bottom: -30px; | |
| 3224 | 3208 | } |
| 3225 | 3209 | .elementor-control-media__content { |
| 3226 | 3210 | transition: all 0.2s ease-in-out; |
| 3227 | 3211 | } |
| @@ -3226,10 +3210,11 @@ | ||
| 3226 | 3210 | transition: all 0.2s ease-in-out; |
| 3227 | 3211 | } |
| 3228 | 3212 | .elementor-control-media__tools { |
| 3229 | 3213 | position: absolute; |
| 3230 | - inset-block-end: 0; | |
| 3231 | - inset-inline: 0; | |
| 3214 | + bottom: 0; | |
| 3215 | + left: 0; | |
| 3216 | + right: 0; | |
| 3232 | 3217 | height: 27px; |
| 3233 | 3218 | transition: all 0.2s ease-in-out; |
| 3234 | 3219 | } |
| 3235 | 3220 | .elementor-control-media__tools > *:not(:first-child) { |
| @@ -3643,9 +3628,9 @@ | ||
| 3643 | 3628 | } |
| 3644 | 3629 | .elementor-control-type-slider--handles-range .elementor-slider .noUi-handle:after { |
| 3645 | 3630 | content: ""; |
| 3646 | 3631 | position: absolute; |
| 3647 | - inset-block-start: 2px; | |
| 3632 | + top: 2px; | |
| 3648 | 3633 | height: 12px; |
| 3649 | 3634 | width: 11px; |
| 3650 | 3635 | transform: rotate(45deg); |
| 3651 | 3636 | background-color: var(--e-a-color-white); |
| @@ -3743,9 +3728,9 @@ | ||
| 3743 | 3728 | background-color: var(--e-a-border-color-focus); |
| 3744 | 3729 | } |
| 3745 | 3730 | .elementor-slider .noUi-tooltip { |
| 3746 | 3731 | position: absolute; |
| 3747 | - inset-block-start: calc(100% + 5px); | |
| 3732 | + top: calc(100% + 5px); | |
| 3748 | 3733 | left: calc(50% - 4px); |
| 3749 | 3734 | transform: translateX(-50%); |
| 3750 | 3735 | font-size: 10px; |
| 3751 | 3736 | } |
| @@ -3832,9 +3817,9 @@ | ||
| 3832 | 3817 | transition-property: opacity, background; |
| 3833 | 3818 | } |
| 3834 | 3819 | .elementor-control-type-switcher .elementor-switch-label:before, .elementor-control-type-switcher .elementor-switch-label:after { |
| 3835 | 3820 | position: absolute; |
| 3836 | - inset-block-start: 0; | |
| 3821 | + top: 0; | |
| 3837 | 3822 | width: 50%; |
| 3838 | 3823 | text-align: center; |
| 3839 | 3824 | line-height: 20px; |
| 3840 | 3825 | transition: inherit; |
| @@ -3840,14 +3825,14 @@ | ||
| 3840 | 3825 | transition: inherit; |
| 3841 | 3826 | } |
| 3842 | 3827 | .elementor-control-type-switcher .elementor-switch-label:before { |
| 3843 | 3828 | content: attr(data-off); |
| 3844 | - inset-inline-end: 5px; | |
| 3829 | + right: 5px; | |
| 3845 | 3830 | color: var(--e-a-color-txt-muted); |
| 3846 | 3831 | } |
| 3847 | 3832 | .elementor-control-type-switcher .elementor-switch-label:after { |
| 3848 | 3833 | content: attr(data-on); |
| 3849 | - inset-inline-start: 5px; | |
| 3834 | + left: 5px; | |
| 3850 | 3835 | color: var(--e-a-btn-color); |
| 3851 | 3836 | opacity: 0; |
| 3852 | 3837 | } |
| 3853 | 3838 | .elementor-control-type-switcher .elementor-switch-input:checked ~ .elementor-switch-label { |
| @@ -3860,19 +3845,19 @@ | ||
| 3860 | 3845 | opacity: 1; |
| 3861 | 3846 | } |
| 3862 | 3847 | .elementor-control-type-switcher .elementor-switch-handle { |
| 3863 | 3848 | position: absolute; |
| 3864 | - inset-block-start: 1px; | |
| 3865 | - inset-inline-start: 1px; | |
| 3849 | + top: 1px; | |
| 3850 | + left: 1px; | |
| 3866 | 3851 | width: 18px; |
| 3867 | 3852 | height: 18px; |
| 3868 | 3853 | background: white; |
| 3869 | 3854 | border-radius: 10px; |
| 3870 | - transition: inset-inline-start 0.15s ease-out; | |
| 3855 | + transition: left 0.15s ease-out; | |
| 3871 | 3856 | } |
| 3872 | 3857 | .elementor-control-type-switcher .elementor-switch-input:checked ~ .elementor-switch-handle { |
| 3873 | - inset-inline-start: initial; | |
| 3874 | - inset-inline-end: 1px; | |
| 3858 | + left: initial; | |
| 3859 | + right: 1px; | |
| 3875 | 3860 | } |
| 3876 | 3861 | |
| 3877 | 3862 | .elementor-control-type-tabs { |
| 3878 | 3863 | display: none; |
| @@ -4005,10 +3990,10 @@ | ||
| 4005 | 3990 | } |
| 4006 | 3991 | .elementor-control-type-url .elementor-control-url-autocomplete-spinner { |
| 4007 | 3992 | display: none; |
| 4008 | 3993 | position: absolute; |
| 4009 | - inset-block-start: 5px; | |
| 4010 | - inset-inline-end: 0; | |
| 3994 | + top: 5px; | |
| 3995 | + right: 0; | |
| 4011 | 3996 | width: 10px; |
| 4012 | 3997 | height: 10px; |
| 4013 | 3998 | font-size: 10px; |
| 4014 | 3999 | color: var(--e-a-color-txt-disabled); |
| @@ -4348,11 +4333,11 @@ | ||
| 4348 | 4333 | } |
| 4349 | 4334 | |
| 4350 | 4335 | #elementor-panel-revisions-loading { |
| 4351 | 4336 | position: absolute; |
| 4352 | - inset-block-start: 50%; | |
| 4353 | - inset-inline-start: 50%; | |
| 4354 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 4337 | + top: 50%; | |
| 4338 | + left: 50%; | |
| 4339 | + transform: translate(-50%, -50%); | |
| 4355 | 4340 | } |
| 4356 | 4341 | #elementor-panel-revisions-loading .eicon-loading { |
| 4357 | 4342 | font-size: 50px; |
| 4358 | 4343 | } |
| @@ -4436,10 +4421,10 @@ | ||
| 4436 | 4421 | .e-control-display-conditions-promotion__wrapper { |
| 4437 | 4422 | display: flex; |
| 4438 | 4423 | justify-content: space-between; |
| 4439 | 4424 | } |
| 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); | |
| 4425 | +.e-control-display-conditions-promotion__wrapper:hover .eicon-lock.e-control-display-conditions-promotion { | |
| 4426 | + color: var(--e-a-color-accent); | |
| 4442 | 4427 | } |
| 4443 | 4428 | .e-control-display-conditions-promotion__description { |
| 4444 | 4429 | display: flex; |
| 4445 | 4430 | align-self: center; |
| @@ -4452,11 +4437,8 @@ | ||
| 4452 | 4437 | display: flex; |
| 4453 | 4438 | justify-content: center; |
| 4454 | 4439 | align-items: center; |
| 4455 | 4440 | } |
| 4456 | -.e-control-display-conditions-promotion__lock-wrapper .eicon-upgrade-crown-full { | |
| 4457 | - color: var(--e-a-color-accent-promotion-disabled); | |
| 4458 | -} | |
| 4459 | 4441 | .e-control-display-conditions-promotion.eicon-flow { |
| 4460 | 4442 | align-self: flex-end; |
| 4461 | 4443 | cursor: pointer; |
| 4462 | 4444 | border: var(--e-a-border-bold); |
| @@ -4467,10 +4449,10 @@ | ||
| 4467 | 4449 | background-color: var(--e-a-bg-active); |
| 4468 | 4450 | color: #E73CF6; |
| 4469 | 4451 | } |
| 4470 | 4452 | |
| 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); | |
| 4453 | +.e-control-motion-effects-promotion__wrapper:hover .eicon-lock, .e-control-promotion__wrapper:hover .eicon-lock { | |
| 4454 | + color: var(--e-a-color-accent); | |
| 4473 | 4455 | } |
| 4474 | 4456 | .e-control-motion-effects-promotion__wrapper .elementor-control-title, .e-control-promotion__wrapper .elementor-control-title { |
| 4475 | 4457 | margin-inline-end: 0; |
| 4476 | 4458 | } |
| @@ -4495,11 +4477,8 @@ | ||
| 4495 | 4477 | display: flex; |
| 4496 | 4478 | justify-content: center; |
| 4497 | 4479 | align-items: center; |
| 4498 | 4480 | } |
| 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 | 4481 | |
| 4503 | 4482 | .e-link-promotion { |
| 4504 | 4483 | font-family: "Roboto", sans-serif; |
| 4505 | 4484 | font-weight: 500; |
| @@ -4529,9 +4508,11 @@ | ||
| 4529 | 4508 | .elementor-editor-kit .elementor-panel #elementor-panel-page-menu { |
| 4530 | 4509 | padding: 25px 15px 0; |
| 4531 | 4510 | } |
| 4532 | 4511 | .elementor-editor-kit #elementor-panel-header-add-button, |
| 4533 | -.elementor-editor-kit #elementor-panel-header-menu-button { | |
| 4512 | +.elementor-editor-kit #elementor-panel-header-menu-button, | |
| 4513 | +.elementor-editor-kit #elementor-panel-footer-sub-menu-item-save-template, | |
| 4514 | +.elementor-editor-kit #elementor-panel-footer-navigator { | |
| 4534 | 4515 | display: none; |
| 4535 | 4516 | } |
| 4536 | 4517 | |
| 4537 | 4518 | .elementor-control-type-global-style-repeater .elementor-repeater-fields { |
| @@ -5011,20 +4992,8 @@ | ||
| 5011 | 4992 | background-color: #fff; |
| 5012 | 4993 | box-shadow: 0 0 3px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 0, 0, 0.15); |
| 5013 | 4994 | } |
| 5014 | 4995 | |
| 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 | 4996 | #elementor-template-library-modal a.elementor-template-library-blank-footer-link { |
| 5028 | 4997 | font-style: normal; |
| 5029 | 4998 | text-decoration: underline; |
| 5030 | 4999 | } |
| @@ -5036,10 +5005,10 @@ | ||
| 5036 | 5005 | } |
| 5037 | 5006 | #elementor-template-library-modal .dialog-message { |
| 5038 | 5007 | overflow-y: scroll; |
| 5039 | 5008 | } |
| 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; | |
| 5009 | +#elementor-template-library-modal:has(#elementor-template-library-save-template) .dialog-message { | |
| 5010 | + overflow-y: hidden; | |
| 5042 | 5011 | } |
| 5043 | 5012 | #elementor-template-library-modal .e-back-to-editor { |
| 5044 | 5013 | color: var(--e-a-color-txt); |
| 5045 | 5014 | text-decoration: underline; |
| @@ -5055,21 +5024,14 @@ | ||
| 5055 | 5024 | display: inline-block; |
| 5056 | 5025 | padding: 17px 20px; |
| 5057 | 5026 | border-block-end: 3px solid transparent; |
| 5058 | 5027 | cursor: pointer; |
| 5059 | - background: transparent; | |
| 5060 | - margin: 0; | |
| 5061 | - font-size: inherit; | |
| 5062 | - font-family: inherit; | |
| 5063 | - color: inherit; | |
| 5064 | - border: none; | |
| 5065 | 5028 | } |
| 5066 | 5029 | .elementor-template-library-menu-item:hover { |
| 5067 | 5030 | background-color: var(--e-a-bg-hover); |
| 5068 | 5031 | border-color: var(--e-a-bg-hover); |
| 5069 | 5032 | } |
| 5070 | -.elementor-template-library-menu-item.elementor-active, .elementor-template-library-menu-item[aria-selected=true] { | |
| 5071 | - border-block-end: 3px solid; | |
| 5033 | +.elementor-template-library-menu-item.elementor-active { | |
| 5072 | 5034 | border-color: var(--e-a-border-color-accent); |
| 5073 | 5035 | color: var(--e-a-color-txt-accent); |
| 5074 | 5036 | } |
| 5075 | 5037 | |
| @@ -5075,25 +5037,11 @@ | ||
| 5075 | 5037 | |
| 5076 | 5038 | #elementor-template-library-header-actions { |
| 5077 | 5039 | display: flex; |
| 5078 | 5040 | } |
| 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; | |
| 5041 | +#elementor-template-library-header-actions > div { | |
| 5087 | 5042 | padding-inline-end: 16px; |
| 5088 | - cursor: pointer; | |
| 5089 | 5043 | } |
| 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 | 5044 | |
| 5097 | 5045 | #elementor-template-library-header-tools.e-hidden-disabled { |
| 5098 | 5046 | opacity: 0; |
| 5099 | 5047 | visibility: hidden; |
| @@ -5115,25 +5063,8 @@ | ||
| 5115 | 5063 | border-inline-end: var(--e-a-border); |
| 5116 | 5064 | cursor: pointer; |
| 5117 | 5065 | transition: color 0.5s; |
| 5118 | 5066 | } |
| 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 | 5067 | #elementor-template-library-header-preview-back:hover { |
| 5137 | 5068 | color: var(--e-a-color-txt-hover); |
| 5138 | 5069 | } |
| 5139 | 5070 | #elementor-template-library-header-preview-back i { |
| @@ -5166,20 +5097,15 @@ | ||
| 5166 | 5097 | } |
| 5167 | 5098 | #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 | 5099 | display: flex; |
| 5169 | 5100 | align-items: baseline; |
| 5170 | - border-radius: 3px; | |
| 5171 | 5101 | } |
| 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 | 5102 | #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 | 5103 | align-items: center; |
| 5178 | 5104 | } |
| 5179 | 5105 | #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 | 5106 | font-size: 14px; |
| 5181 | - margin-inline-start: 5px; | |
| 5107 | + margin-left: 5px; | |
| 5182 | 5108 | } |
| 5183 | 5109 | #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 | 5110 | width: 200px; |
| 5185 | 5111 | margin: 0px 10px; |
| @@ -5278,14 +5204,8 @@ | ||
| 5278 | 5204 | align-items: center; |
| 5279 | 5205 | gap: 8px; |
| 5280 | 5206 | } |
| 5281 | 5207 | #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 | 5208 | cursor: pointer; |
| 5289 | 5209 | font-size: 20px; |
| 5290 | 5210 | padding: 0 5px; |
| 5291 | 5211 | border-radius: 2px; |
| @@ -5325,19 +5245,15 @@ | ||
| 5325 | 5245 | padding: 8px; |
| 5326 | 5246 | border: var(--e-a-border); |
| 5327 | 5247 | border-radius: 3px; |
| 5328 | 5248 | } |
| 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 { | |
| 5249 | +#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 | 5250 | display: flex; |
| 5335 | 5251 | } |
| 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 { | |
| 5252 | +#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 | 5253 | display: none; |
| 5338 | 5254 | } |
| 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 { | |
| 5255 | +#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 | 5256 | display: flex !important; |
| 5341 | 5257 | } |
| 5342 | 5258 | #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-template-thumbnail { |
| 5343 | 5259 | width: 190px; |
| @@ -5343,14 +5259,14 @@ | ||
| 5343 | 5259 | width: 190px; |
| 5344 | 5260 | height: 100px; |
| 5345 | 5261 | position: relative; |
| 5346 | 5262 | border-radius: 3px; |
| 5347 | - margin-block-end: 4px; | |
| 5263 | + margin-bottom: 4px; | |
| 5348 | 5264 | overflow: hidden; |
| 5349 | 5265 | } |
| 5350 | 5266 | #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; | |
| 5267 | + -o-object-fit: cover; | |
| 5268 | + object-fit: cover; | |
| 5353 | 5269 | width: 100%; |
| 5354 | 5270 | height: 100%; |
| 5355 | 5271 | } |
| 5356 | 5272 | #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 +5348,16 @@ | ||
| 5432 | 5348 | gap: 20px; |
| 5433 | 5349 | align-items: center; |
| 5434 | 5350 | flex: 1; |
| 5435 | 5351 | } |
| 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; | |
| 5352 | +#elementor-template-library-templates .bulk-selection-action-bar i { | |
| 5443 | 5353 | cursor: pointer; |
| 5444 | - display: flex; | |
| 5445 | - align-items: center; | |
| 5446 | - justify-content: center; | |
| 5354 | + font-size: 18px; | |
| 5447 | 5355 | } |
| 5448 | -#elementor-template-library-templates .bulk-selection-action-bar button.disabled { | |
| 5356 | +#elementor-template-library-templates .bulk-selection-action-bar i.disabled { | |
| 5449 | 5357 | pointer-events: none; |
| 5450 | 5358 | opacity: 0.3; |
| 5451 | - cursor: not-allowed; | |
| 5452 | 5359 | } |
| 5453 | -#elementor-template-library-templates .bulk-selection-action-bar i { | |
| 5454 | - cursor: pointer; | |
| 5455 | - font-size: 18px; | |
| 5456 | -} | |
| 5457 | 5360 | #elementor-template-library-templates .bulk-selection-action-bar .eicon-editor-close { |
| 5458 | 5361 | font-size: 20px; |
| 5459 | 5362 | } |
| 5460 | 5363 | #elementor-template-library-templates #elementor-template-library-navigation-container { |
| @@ -5490,12 +5393,12 @@ | ||
| 5490 | 5393 | background: var(--e-a-bg-active); |
| 5491 | 5394 | } |
| 5492 | 5395 | #elementor-template-library-templates .elementor-template-library-local-column-1 input[type=checkbox] { |
| 5493 | 5396 | position: relative; |
| 5494 | - inset-block-start: 3px; | |
| 5397 | + top: 3px; | |
| 5495 | 5398 | } |
| 5496 | 5399 | #elementor-template-library-templates .elementor-template-library-local-column-1 input[type=checkbox]:checked { |
| 5497 | - inset-block-start: 0px; | |
| 5400 | + top: 0px; | |
| 5498 | 5401 | } |
| 5499 | 5402 | #elementor-template-library-templates .bulk-selection-item-checkbox:checked, |
| 5500 | 5403 | #elementor-template-library-templates #bulk-select-all:checked { |
| 5501 | 5404 | background: #69727D; |
| @@ -5536,11 +5439,11 @@ | ||
| 5536 | 5439 | .elementor-template-library-filter-select-source .source-option i { |
| 5537 | 5440 | margin-inline-end: 5px; |
| 5538 | 5441 | } |
| 5539 | 5442 | .elementor-template-library-filter-select-source .source-option .new-badge { |
| 5540 | - border: 1px solid var(--e-a-color-primary-bold-dark); | |
| 5443 | + border: 1px solid var(--e-a-color-primary-bold); | |
| 5541 | 5444 | padding: 2px 4px; |
| 5542 | - color: var(--e-a-color-primary-bold-dark); | |
| 5445 | + color: var(--e-a-color-primary-bold); | |
| 5543 | 5446 | border-radius: 10px; |
| 5544 | 5447 | font-size: 10px; |
| 5545 | 5448 | margin-inline-start: 5px; |
| 5546 | 5449 | } |
| @@ -5547,52 +5450,8 @@ | ||
| 5547 | 5450 | .elementor-template-library-filter-select-source .source-option.selected, .elementor-template-library-filter-select-source .source-option:hover { |
| 5548 | 5451 | background-color: var(--e-a-bg-hover); |
| 5549 | 5452 | } |
| 5550 | 5453 | |
| 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 | 5454 | #elementor-template-library-filter-toolbar-remote { |
| 5596 | 5455 | font-size: 11px; |
| 5597 | 5456 | } |
| 5598 | 5457 | |
| @@ -5667,9 +5526,9 @@ | ||
| 5667 | 5526 | content: "\e923"; |
| 5668 | 5527 | } |
| 5669 | 5528 | |
| 5670 | 5529 | #elementor-template-library-create-new-folder-dialog .elementor-create-folder-template-dialog__p { |
| 5671 | - margin-block-end: 10px; | |
| 5530 | + margin-bottom: 10px; | |
| 5672 | 5531 | } |
| 5673 | 5532 | |
| 5674 | 5533 | #elementor-template-library-filter-text-wrapper { |
| 5675 | 5534 | width: 200px; |
| @@ -5681,9 +5540,9 @@ | ||
| 5681 | 5540 | inset-inline-end: 0; |
| 5682 | 5541 | transform: translateY(-50%); |
| 5683 | 5542 | } |
| 5684 | 5543 | #elementor-template-library-filter-text-wrapper i.eicon-loading.eicon-animation-spin { |
| 5685 | - inset-block-start: 25%; | |
| 5544 | + top: 25%; | |
| 5686 | 5545 | } |
| 5687 | 5546 | |
| 5688 | 5547 | #elementor-template-library-filter-text { |
| 5689 | 5548 | border: none; |
| @@ -5710,32 +5569,19 @@ | ||
| 5710 | 5569 | padding: 8px; |
| 5711 | 5570 | border: var(--e-a-border); |
| 5712 | 5571 | border-radius: 3px; |
| 5713 | 5572 | } |
| 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 { | |
| 5573 | +.elementor-template-library-template-remote:hover { | |
| 5719 | 5574 | background-color: var(--e-a-bg-hover); |
| 5720 | 5575 | } |
| 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 { | |
| 5576 | +.elementor-template-library-template-remote:hover .elementor-template-library-template-name { | |
| 5725 | 5577 | display: none; |
| 5726 | 5578 | } |
| 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 { | |
| 5579 | +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-template-preview { | |
| 5734 | 5580 | opacity: 0; |
| 5735 | 5581 | } |
| 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 { | |
| 5582 | +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-favorite, | |
| 5583 | +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-template-action { | |
| 5738 | 5584 | display: none; |
| 5739 | 5585 | } |
| 5740 | 5586 | .elementor-template-library-template-remote.elementor-template-library-pro-template .elementor-template-library-template-body:before { |
| 5741 | 5587 | content: var(--elementor-template-library-subscription-plan-label); |
| @@ -5770,9 +5616,9 @@ | ||
| 5770 | 5616 | } |
| 5771 | 5617 | .elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp) .elementor-template-library-template-name { |
| 5772 | 5618 | display: none; |
| 5773 | 5619 | } |
| 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 { | |
| 5620 | +.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 | 5621 | transform: translateY(100%); |
| 5776 | 5622 | } |
| 5777 | 5623 | .elementor-template-library-template-remote .elementor-template-library-template-body { |
| 5778 | 5624 | position: relative; |
| @@ -5797,11 +5643,11 @@ | ||
| 5797 | 5643 | } |
| 5798 | 5644 | .elementor-template-library-template-remote .elementor-template-library-template-preview i { |
| 5799 | 5645 | font-size: 20px; |
| 5800 | 5646 | position: absolute; |
| 5801 | - inset-block-start: 50%; | |
| 5802 | - inset-inline-start: 50%; | |
| 5803 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 5647 | + top: 50%; | |
| 5648 | + left: 50%; | |
| 5649 | + transform: translate(-50%, -50%); | |
| 5804 | 5650 | } |
| 5805 | 5651 | .elementor-template-library-template-remote .elementor-template-library-template-footer { |
| 5806 | 5652 | display: flex; |
| 5807 | 5653 | justify-content: space-between; |
| @@ -5821,22 +5667,10 @@ | ||
| 5821 | 5667 | .elementor-template-library-template-remote .elementor-template-library-favorite { |
| 5822 | 5668 | margin-inline-start: auto; |
| 5823 | 5669 | } |
| 5824 | 5670 | .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; | |
| 5671 | + display: none; | |
| 5834 | 5672 | } |
| 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 | 5673 | .elementor-template-library-template-remote .elementor-template-library-template-favorite-input:checked + .elementor-template-library-template-favorite-label i:before { |
| 5840 | 5674 | content: "\e93f"; |
| 5841 | 5675 | color: var(--e-a-color-primary-bold); |
| 5842 | 5676 | } |
| @@ -5955,22 +5789,11 @@ | ||
| 5955 | 5789 | box-shadow: 1px 3px 11px rgba(0, 0, 0, 0.3); |
| 5956 | 5790 | inset-block-start: 100%; |
| 5957 | 5791 | inset-inline-end: 0; |
| 5958 | 5792 | z-index: 1; |
| 5959 | - list-style: none; | |
| 5960 | - margin: 0; | |
| 5961 | - padding: 0; | |
| 5962 | 5793 | } |
| 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; | |
| 5794 | +.elementor-template-library-template-local .elementor-template-library-template-more > div, | |
| 5795 | +.elementor-template-library-template-cloud .elementor-template-library-template-more > div { | |
| 5973 | 5796 | padding: 10px 20px; |
| 5974 | 5797 | font-size: 11px; |
| 5975 | 5798 | cursor: pointer; |
| 5976 | 5799 | display: flex; |
| @@ -5975,21 +5798,25 @@ | ||
| 5975 | 5798 | cursor: pointer; |
| 5976 | 5799 | display: flex; |
| 5977 | 5800 | align-items: center; |
| 5978 | 5801 | gap: 8px; |
| 5979 | - width: 100%; | |
| 5980 | 5802 | } |
| 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 { | |
| 5803 | +.elementor-template-library-template-local .elementor-template-library-template-more > div.disabled, | |
| 5804 | +.elementor-template-library-template-cloud .elementor-template-library-template-more > div.disabled { | |
| 5985 | 5805 | cursor: not-allowed; |
| 5986 | 5806 | color: var(--e-a-color-txt-disabled); |
| 5987 | 5807 | } |
| 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 { | |
| 5808 | +.elementor-template-library-template-local .elementor-template-library-template-more > div.disabled a, | |
| 5809 | +.elementor-template-library-template-cloud .elementor-template-library-template-more > div.disabled a { | |
| 5810 | + color: var(--e-a-color-txt-disabled); | |
| 5811 | + cursor: not-allowed; | |
| 5812 | +} | |
| 5813 | +.elementor-template-library-template-local .elementor-template-library-template-more a, | |
| 5814 | +.elementor-template-library-template-cloud .elementor-template-library-template-more a { | |
| 5990 | 5815 | color: var(--e-a-color-txt); |
| 5991 | - text-decoration: none; | |
| 5816 | + display: flex; | |
| 5817 | + align-items: center; | |
| 5818 | + gap: 8px; | |
| 5992 | 5819 | } |
| 5993 | 5820 | .elementor-template-library-template-local .elementor-template-library-template-more .elementor-template-library-template-delete, |
| 5994 | 5821 | .elementor-template-library-template-cloud .elementor-template-library-template-more .elementor-template-library-template-delete { |
| 5995 | 5822 | color: var(--e-a-color-danger); |
| @@ -6001,14 +5828,8 @@ | ||
| 6001 | 5828 | .elementor-template-library-template-local .elementor-template-library-template-more-toggle, |
| 6002 | 5829 | .elementor-template-library-template-cloud .elementor-template-library-template-more-toggle { |
| 6003 | 5830 | margin-inline-start: auto; |
| 6004 | 5831 | cursor: pointer; |
| 6005 | - background: none; | |
| 6006 | - border: none; | |
| 6007 | - padding: 0; | |
| 6008 | - display: flex; | |
| 6009 | - align-items: center; | |
| 6010 | - justify-content: center; | |
| 6011 | 5832 | } |
| 6012 | 5833 | .elementor-template-library-template-local .elementor-template-library-template-more-toggle i, |
| 6013 | 5834 | .elementor-template-library-template-cloud .elementor-template-library-template-more-toggle i { |
| 6014 | 5835 | font-size: 20px; |
| @@ -6075,11 +5896,9 @@ | ||
| 6075 | 5896 | display: flex; |
| 6076 | 5897 | align-items: center; |
| 6077 | 5898 | } |
| 6078 | 5899 | .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 { | |
| 5900 | +.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-controls > div { | |
| 6082 | 5901 | cursor: pointer; |
| 6083 | 5902 | transition: color 0.5s; |
| 6084 | 5903 | } |
| 6085 | 5904 | .elementor-template-library-template-local .elementor-template-library-template-insert.disabled, |
| @@ -6164,18 +5983,18 @@ | ||
| 6164 | 5983 | #elementor-template-library-save-template-form > * { |
| 6165 | 5984 | height: 55px; |
| 6166 | 5985 | font-size: 16px; |
| 6167 | 5986 | } |
| 5987 | +#elementor-template-library-save-template-form .cloud-library-form-inputs { | |
| 5988 | + display: block; | |
| 5989 | + width: 500px; | |
| 5990 | + margin: 0 auto; | |
| 5991 | +} | |
| 6168 | 5992 | #elementor-template-library-save-template-form .cloud-library-form-inputs > * { |
| 6169 | 5993 | height: 55px; |
| 6170 | 5994 | font-size: 16px; |
| 6171 | 5995 | margin-block-end: 15px; |
| 6172 | 5996 | } |
| 6173 | -#elementor-template-library-save-template-form .cloud-library-form-inputs { | |
| 6174 | - display: block; | |
| 6175 | - width: 500px; | |
| 6176 | - margin: 0 auto; | |
| 6177 | -} | |
| 6178 | 5997 | #elementor-template-library-save-template-form .cloud-library-form-inputs .upgrade-tooltip, |
| 6179 | 5998 | #elementor-template-library-save-template-form .cloud-library-form-inputs .connect-badge { |
| 6180 | 5999 | display: none; |
| 6181 | 6000 | } |
| @@ -6201,24 +6020,15 @@ | ||
| 6201 | 6020 | #elementor-template-library-save-template-form .cloud-library-form-inputs .ellipsis-container { |
| 6202 | 6021 | display: inline; |
| 6203 | 6022 | background: var(--e-a-bg-hover); |
| 6204 | 6023 | padding: 0 2px 1px; |
| 6205 | - border: none; | |
| 6206 | 6024 | border-radius: 2px; |
| 6207 | 6025 | vertical-align: bottom; |
| 6208 | 6026 | cursor: pointer; |
| 6209 | - font-family: inherit; | |
| 6210 | - font-size: inherit; | |
| 6211 | - color: inherit; | |
| 6212 | - line-height: inherit; | |
| 6213 | 6027 | } |
| 6214 | 6028 | #elementor-template-library-save-template-form .cloud-library-form-inputs .ellipsis-container:hover { |
| 6215 | 6029 | background: var(--e-a-bg-active); |
| 6216 | 6030 | } |
| 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 | 6031 | #elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .upgrade-tooltip, |
| 6222 | 6032 | #elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .connect-badge, |
| 6223 | 6033 | #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 | 6034 | #elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .connect-badge, |
| @@ -6271,9 +6081,9 @@ | ||
| 6271 | 6081 | position: relative; |
| 6272 | 6082 | } |
| 6273 | 6083 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections input[type=checkbox]:checked { |
| 6274 | 6084 | background: #69727D; |
| 6275 | - inset-block-start: -3px; | |
| 6085 | + top: -3px; | |
| 6276 | 6086 | position: relative; |
| 6277 | 6087 | } |
| 6278 | 6088 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input { |
| 6279 | 6089 | position: relative; |
| @@ -6282,22 +6092,18 @@ | ||
| 6282 | 6092 | #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 | 6093 | white-space: nowrap; |
| 6284 | 6094 | text-overflow: ellipsis; |
| 6285 | 6095 | overflow: hidden; |
| 6286 | - overflow: visible; | |
| 6287 | - display: inline-flex; | |
| 6288 | - align-items: baseline; | |
| 6289 | 6096 | line-height: 27px; |
| 6290 | 6097 | } |
| 6291 | 6098 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #cloud, |
| 6292 | 6099 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #local { |
| 6293 | - flex-shrink: 0; | |
| 6294 | 6100 | position: relative; |
| 6295 | - inset-block-start: 2px; | |
| 6101 | + top: 2px; | |
| 6296 | 6102 | } |
| 6297 | 6103 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #cloud:checked, |
| 6298 | 6104 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #local:checked { |
| 6299 | - inset-block-start: -2px; | |
| 6105 | + top: -2px; | |
| 6300 | 6106 | } |
| 6301 | 6107 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .eicon-ellipsis-h { |
| 6302 | 6108 | vertical-align: bottom; |
| 6303 | 6109 | } |
| @@ -6308,26 +6114,15 @@ | ||
| 6308 | 6114 | } |
| 6309 | 6115 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .selected-folder { |
| 6310 | 6116 | display: none; |
| 6311 | 6117 | margin-inline-end: 5px; |
| 6312 | - align-items: baseline; | |
| 6313 | - white-space: nowrap; | |
| 6314 | - text-overflow: ellipsis; | |
| 6315 | - overflow: hidden; | |
| 6316 | 6118 | } |
| 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 | 6119 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .selected-folder-text { |
| 6321 | 6120 | text-decoration: underline; |
| 6322 | 6121 | cursor: pointer; |
| 6323 | - white-space: nowrap; | |
| 6324 | - text-overflow: ellipsis; | |
| 6325 | - overflow: hidden; | |
| 6326 | 6122 | } |
| 6327 | 6123 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .eicon-editor-close { |
| 6328 | 6124 | cursor: pointer; |
| 6329 | - flex-shrink: 0; | |
| 6330 | 6125 | } |
| 6331 | 6126 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #elementor-template-library-connect__badge { |
| 6332 | 6127 | color: var(--e-a-color-primary-bold); |
| 6333 | 6128 | font-size: 14px; |
| @@ -6337,9 +6132,9 @@ | ||
| 6337 | 6132 | } |
| 6338 | 6133 | #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown { |
| 6339 | 6134 | display: none; |
| 6340 | 6135 | position: absolute; |
| 6341 | - inset-block-start: 40px; | |
| 6136 | + top: 40px; | |
| 6342 | 6137 | background-color: var(--e-a-bg-default); |
| 6343 | 6138 | min-width: 187px; |
| 6344 | 6139 | overflow: auto; |
| 6345 | 6140 | box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); |
| @@ -6363,9 +6158,8 @@ | ||
| 6363 | 6158 | } |
| 6364 | 6159 | #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item { |
| 6365 | 6160 | padding: 5px 15px; |
| 6366 | 6161 | cursor: pointer; |
| 6367 | - list-style: none; | |
| 6368 | 6162 | } |
| 6369 | 6163 | #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item[data-id="0"] .eicon-folder-o { |
| 6370 | 6164 | display: none; |
| 6371 | 6165 | } |
| @@ -6374,15 +6168,11 @@ | ||
| 6374 | 6168 | } |
| 6375 | 6169 | #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item[data-id="0"] { |
| 6376 | 6170 | text-decoration: underline; |
| 6377 | 6171 | } |
| 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 { | |
| 6172 | +#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 | 6173 | background: var(--e-a-border-color); |
| 6380 | 6174 | } |
| 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 | 6175 | #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item.disabled { |
| 6386 | 6176 | pointer-events: none; |
| 6387 | 6177 | opacity: 0.3; |
| 6388 | 6178 | } |
| @@ -6388,9 +6178,10 @@ | ||
| 6388 | 6178 | } |
| 6389 | 6179 | #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .no-results { |
| 6390 | 6180 | text-align: center; |
| 6391 | 6181 | font-size: 13px; |
| 6392 | - margin: 0 20px; | |
| 6182 | + width: 155px; | |
| 6183 | + margin: 0 auto; | |
| 6393 | 6184 | padding-block: 15px; |
| 6394 | 6185 | pointer-events: none; |
| 6395 | 6186 | } |
| 6396 | 6187 | #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .no-results i { |
| @@ -6404,259 +6195,8 @@ | ||
| 6404 | 6195 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input.disabled { |
| 6405 | 6196 | pointer-events: none; |
| 6406 | 6197 | opacity: 0.3; |
| 6407 | 6198 | } |
| 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 | 6199 | |
| 6660 | 6200 | #elementor-template-library-save-template-name { |
| 6661 | 6201 | width: 500px; |
| 6662 | 6202 | padding-inline-start: 25px; |
| @@ -6750,11 +6290,11 @@ | ||
| 6750 | 6290 | } |
| 6751 | 6291 | |
| 6752 | 6292 | .elementor-template-library-blank-footer { |
| 6753 | 6293 | position: absolute; |
| 6754 | - inset-block-end: 70px; | |
| 6755 | - inset-inline-start: 50%; | |
| 6756 | - transform: translateX(calc(-50% * var(--direction-multiplier))); | |
| 6294 | + bottom: 70px; | |
| 6295 | + left: 50%; | |
| 6296 | + transform: translateX(-50%); | |
| 6757 | 6297 | font-style: italic; |
| 6758 | 6298 | color: var(--e-a-color-txt-muted); |
| 6759 | 6299 | } |
| 6760 | 6300 | @media (max-height: 700px) { |
| @@ -6787,11 +6327,9 @@ | ||
| 6787 | 6327 | margin-block-start: 10px; |
| 6788 | 6328 | } |
| 6789 | 6329 | |
| 6790 | 6330 | #elementor-library--infotip__dialog, |
| 6791 | -#elementor-library--connect_infotip__dialog, | |
| 6792 | -#elementor-library--cloud-upgrade__dialog, | |
| 6793 | -#elementor-library--site-info__dialog { | |
| 6331 | +#elementor-library--connect_infotip__dialog { | |
| 6794 | 6332 | position: absolute; |
| 6795 | 6333 | z-index: 10000; |
| 6796 | 6334 | background-color: var(--e-a-bg-default); |
| 6797 | 6335 | box-shadow: var(--e-a-popover-shadow); |
| @@ -6796,39 +6334,19 @@ | ||
| 6796 | 6334 | background-color: var(--e-a-bg-default); |
| 6797 | 6335 | box-shadow: var(--e-a-popover-shadow); |
| 6798 | 6336 | border-radius: var(--e-a-border-radius); |
| 6799 | 6337 | } |
| 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 | 6338 | #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 { | |
| 6339 | +#elementor-library--connect_infotip__dialog__title { | |
| 6818 | 6340 | font-size: 14px; |
| 6819 | 6341 | } |
| 6820 | 6342 | #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 { | |
| 6343 | +#elementor-library--connect_infotip__dialog .dialog-buttons-wrapper { | |
| 6824 | 6344 | padding: 10px 0 10px 10px; |
| 6825 | 6345 | float: inline-end; |
| 6826 | 6346 | } |
| 6827 | 6347 | #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 { | |
| 6348 | +#elementor-library--connect_infotip__dialog .dialog-button { | |
| 6831 | 6349 | padding: 7px 25px; |
| 6832 | 6350 | font-size: 13px; |
| 6833 | 6351 | background: none; |
| 6834 | 6352 | color: var(--e-a-btn-bg-accent); |
| @@ -6836,11 +6354,9 @@ | ||
| 6836 | 6354 | font-weight: 500; |
| 6837 | 6355 | cursor: pointer; |
| 6838 | 6356 | } |
| 6839 | 6357 | #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 { | |
| 6358 | +#elementor-library--connect_infotip__dialog:after { | |
| 6843 | 6359 | content: ""; |
| 6844 | 6360 | position: absolute; |
| 6845 | 6361 | inset-inline-end: 46%; |
| 6846 | 6362 | transform: scaleX(0.7); |
| @@ -6853,14 +6369,11 @@ | ||
| 6853 | 6369 | #elementor-library--infotip__dialog .dialog-message { |
| 6854 | 6370 | padding: 20px 20px 0px 20px; |
| 6855 | 6371 | } |
| 6856 | 6372 | #elementor-library--infotip__dialog:after { |
| 6857 | - inset-block-start: 100%; | |
| 6858 | - border-block-start-color: var(--e-a-bg-default); | |
| 6373 | + top: 100%; | |
| 6374 | + border-top-color: var(--e-a-bg-default); | |
| 6859 | 6375 | } |
| 6860 | -#elementor-library--infotip__dialog.variant-b:after { | |
| 6861 | - border-block-start-color: var(--e-a-bg-secondary); | |
| 6862 | -} | |
| 6863 | 6376 | |
| 6864 | 6377 | #elementor-library--connect_infotip__dialog { |
| 6865 | 6378 | width: 265px; |
| 6866 | 6379 | } |
| @@ -6866,207 +6379,13 @@ | ||
| 6866 | 6379 | } |
| 6867 | 6380 | #elementor-library--connect_infotip__dialog .dialog-message { |
| 6868 | 6381 | padding: 20px; |
| 6869 | 6382 | } |
| 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); | |
| 6383 | +#elementor-library--connect_infotip__dialog:after { | |
| 6384 | + bottom: 100%; | |
| 6385 | + border-bottom-color: var(--e-a-bg-default); | |
| 6873 | 6386 | } |
| 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 | 6387 | |
| 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 | 6388 | .elementor-tags-list { |
| 7070 | 6389 | display: none; |
| 7071 | 6390 | position: absolute; |
| 7072 | 6391 | width: 260px; |
| @@ -7250,14 +6569,8 @@ | ||
| 7250 | 6569 | cursor: default; |
| 7251 | 6570 | opacity: 0.5; |
| 7252 | 6571 | color: var(--e-a-color-disabled); |
| 7253 | 6572 | } |
| 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 | 6573 | .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 | 6574 | background-color: var(--e-a-bg-hover); |
| 7262 | 6575 | color: var(--e-a-color-hover); |
| 7263 | 6576 | } |
| @@ -7286,20 +6599,8 @@ | ||
| 7286 | 6599 | color: var(--e-a-color-primary-bold); |
| 7287 | 6600 | border-radius: 10px; |
| 7288 | 6601 | font-size: 10px; |
| 7289 | 6602 | } |
| 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 | 6603 | .elementor-context-menu-list__item__title, .elementor-context-menu-list__item__shortcut { |
| 7303 | 6604 | font-size: 14px; |
| 7304 | 6605 | font-style: normal; |
| 7305 | 6606 | font-weight: 400; |
| @@ -7697,9 +6998,9 @@ | ||
| 7697 | 6998 | transition: transform 0.5s; |
| 7698 | 6999 | z-index: 91; |
| 7699 | 7000 | } |
| 7700 | 7001 | .elementor-navigator__element__indicators:not(:hover) { |
| 7701 | - transform: translateX(calc(100% * var(--direction-multiplier) - var(--e-editor-navigator-indicator-width) * var(--direction-multiplier))); | |
| 7002 | + transform: translateX(calc(100% * var(--direction-multiplier) - var(--e-editor-navigator-indicator-width))); | |
| 7702 | 7003 | } |
| 7703 | 7004 | .elementor-navigator__element__indicator { |
| 7704 | 7005 | height: 100%; |
| 7705 | 7006 | width: 31px; |
| @@ -7726,9 +7027,9 @@ | ||
| 7726 | 7027 | |
| 7727 | 7028 | .e-notice-bar { |
| 7728 | 7029 | position: absolute; |
| 7729 | 7030 | width: 100%; |
| 7730 | - inset-block-end: 0; | |
| 7031 | + bottom: 0; | |
| 7731 | 7032 | display: flex; |
| 7732 | 7033 | align-items: center; |
| 7733 | 7034 | height: 40px; |
| 7734 | 7035 | color: #fff; |
| @@ -7975,11 +7276,11 @@ | ||
| 7975 | 7276 | flex-direction: column; |
| 7976 | 7277 | align-items: center; |
| 7977 | 7278 | width: 100%; |
| 7978 | 7279 | position: absolute; |
| 7979 | - inset-block-start: 50%; | |
| 7980 | - inset-inline-start: 50%; | |
| 7981 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 7280 | + top: 50%; | |
| 7281 | + left: 50%; | |
| 7282 | + transform: translate(-50%, -50%); | |
| 7982 | 7283 | padding: 1px; |
| 7983 | 7284 | } |
| 7984 | 7285 | .elementor-icons-manager__tab__item__icon { |
| 7985 | 7286 | font-size: 25px; |
| @@ -8023,12 +7324,11 @@ | ||
| 8023 | 7324 | } |
| 8024 | 7325 | .pickr .pcr-button:before, .pickr .pcr-button:after { |
| 8025 | 7326 | height: 12px; |
| 8026 | 7327 | width: 12px; |
| 8027 | - position: absolute; | |
| 8028 | - inset-block-start: 50%; | |
| 8029 | - inset-inline-start: 50%; | |
| 8030 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 7328 | + top: 50%; | |
| 7329 | + left: 50%; | |
| 7330 | + transform: translate(-50%, -50%); | |
| 8031 | 7331 | } |
| 8032 | 7332 | |
| 8033 | 7333 | .pcr-app { |
| 8034 | 7334 | background-color: var(--e-a-bg-default); |
| @@ -8168,9 +7468,9 @@ | ||
| 8168 | 7468 | } |
| 8169 | 7469 | |
| 8170 | 7470 | .select2-selection__arrow { |
| 8171 | 7471 | height: 27px; |
| 8172 | - inset-block-start: 0; | |
| 7472 | + top: 0; | |
| 8173 | 7473 | } |
| 8174 | 7474 | |
| 8175 | 7475 | .select2-results__option[aria-selected=true] { |
| 8176 | 7476 | background-color: var(--e-a-bg-active); |
| @@ -8229,10 +7529,11 @@ | ||
| 8229 | 7529 | padding: 0; |
| 8230 | 7530 | margin: 0; |
| 8231 | 7531 | height: 100px; |
| 8232 | 7532 | position: absolute; |
| 8233 | - inset-block-start: -60px; | |
| 8234 | - inset-inline: 0; | |
| 7533 | + top: -60px; | |
| 7534 | + left: 0; | |
| 7535 | + right: 0; | |
| 8235 | 7536 | } |
| 8236 | 7537 | #elementor-paste-area-dialog #elementor-paste-area-dialog__input:focus { |
| 8237 | 7538 | border-color: transparent; |
| 8238 | 7539 | outline: none; |
| @@ -8257,54 +7558,21 @@ | ||
| 8257 | 7558 | display: block; |
| 8258 | 7559 | margin: 10px -15px; |
| 8259 | 7560 | } |
| 8260 | 7561 | |
| 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 | 7562 | [class^=eicon-flex], [class*=" eicon-flex"] { |
| 8291 | 7563 | transition: 0.3s all; |
| 7564 | + --is-ltr: 1; | |
| 7565 | + --is-rtl: 0; | |
| 7566 | + --rotation-direction: calc(var(--is-ltr) - var(--is-rtl)); | |
| 8292 | 7567 | } |
| 8293 | 7568 | [class^=eicon-flex].eicon-inline, [class*=" eicon-flex"].eicon-inline { |
| 8294 | 7569 | max-height: 1em; |
| 8295 | 7570 | max-width: 1em; |
| 8296 | 7571 | } |
| 8297 | -[class^=eicon-flex], [class*=" eicon-flex"] { | |
| 8298 | - --is-ltr: 1; | |
| 8299 | - --is-rtl: 0; | |
| 8300 | -} | |
| 8301 | 7572 | [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 | 7573 | --rotation-direction: calc(var(--is-ltr) + var(--is-rtl)); |
| 8303 | 7574 | } |
| 8304 | -[class^=eicon-flex], [class*=" eicon-flex"] { | |
| 8305 | - --rotation-direction: calc(var(--is-ltr) - var(--is-rtl)); | |
| 8306 | -} | |
| 8307 | 7575 | :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 | 7576 | transform: rotate(calc(var(--rotation-direction) * 90deg)); |
| 8309 | 7577 | } |
| 8310 | 7578 | :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 +7585,6 @@ | ||
| 8317 | 7585 | transform: rotate(calc(var(--is-rtl) * 180deg)); |
| 8318 | 7586 | } |
| 8319 | 7587 | .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 | 7588 | 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 | 7589 | } |
| 8332 | 7590 | /*# sourceMappingURL=editor.css.map */ |