| @@ -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 { |
| @@ -5015,20 +4996,8 @@ | ||
| 5015 | 4996 | background-color: #fff; |
| 5016 | 4997 | box-shadow: 0 0 3px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 0, 0, 0.15); |
| 5017 | 4998 | } |
| 5018 | 4999 | |
| 5019 | -#elementor-template-library-modal button:focus-visible, | |
| 5020 | -#elementor-template-library-modal a:focus-visible, | |
| 5021 | -#elementor-template-library-modal input:focus-visible, | |
| 5022 | -#elementor-template-library-modal select:focus-visible, | |
| 5023 | -#elementor-template-library-modal [tabindex="0"]:focus-visible, | |
| 5024 | -#elementor-template-library-modal [role=tab]:focus-visible, | |
| 5025 | -#elementor-template-library-modal [role=radio]:focus-visible, | |
| 5026 | -#elementor-template-library-modal [role=menuitem]:focus-visible { | |
| 5027 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 5028 | - outline-offset: 2px; | |
| 5029 | - border-radius: 2px; | |
| 5030 | -} | |
| 5031 | 5000 | #elementor-template-library-modal a.elementor-template-library-blank-footer-link { |
| 5032 | 5001 | font-style: normal; |
| 5033 | 5002 | text-decoration: underline; |
| 5034 | 5003 | } |
| @@ -5040,10 +5009,10 @@ | ||
| 5040 | 5009 | } |
| 5041 | 5010 | #elementor-template-library-modal .dialog-message { |
| 5042 | 5011 | overflow-y: scroll; |
| 5043 | 5012 | } |
| 5044 | -#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 { | |
| 5045 | - overflow-y: auto; | |
| 5013 | +#elementor-template-library-modal:has(#elementor-template-library-save-template) .dialog-message { | |
| 5014 | + overflow-y: hidden; | |
| 5046 | 5015 | } |
| 5047 | 5016 | #elementor-template-library-modal .e-back-to-editor { |
| 5048 | 5017 | color: var(--e-a-color-txt); |
| 5049 | 5018 | text-decoration: underline; |
| @@ -5059,21 +5028,14 @@ | ||
| 5059 | 5028 | display: inline-block; |
| 5060 | 5029 | padding: 17px 20px; |
| 5061 | 5030 | border-block-end: 3px solid transparent; |
| 5062 | 5031 | cursor: pointer; |
| 5063 | - background: transparent; | |
| 5064 | - margin: 0; | |
| 5065 | - font-size: inherit; | |
| 5066 | - font-family: inherit; | |
| 5067 | - color: inherit; | |
| 5068 | - border: none; | |
| 5069 | 5032 | } |
| 5070 | 5033 | .elementor-template-library-menu-item:hover { |
| 5071 | 5034 | background-color: var(--e-a-bg-hover); |
| 5072 | 5035 | border-color: var(--e-a-bg-hover); |
| 5073 | 5036 | } |
| 5074 | -.elementor-template-library-menu-item.elementor-active, .elementor-template-library-menu-item[aria-selected=true] { | |
| 5075 | - border-block-end: 3px solid; | |
| 5037 | +.elementor-template-library-menu-item.elementor-active { | |
| 5076 | 5038 | border-color: var(--e-a-border-color-accent); |
| 5077 | 5039 | color: var(--e-a-color-txt-accent); |
| 5078 | 5040 | } |
| 5079 | 5041 | |
| @@ -5079,25 +5041,11 @@ | ||
| 5079 | 5041 | |
| 5080 | 5042 | #elementor-template-library-header-actions { |
| 5081 | 5043 | display: flex; |
| 5082 | 5044 | } |
| 5083 | -#elementor-template-library-header-actions > div, | |
| 5084 | -#elementor-template-library-header-actions > button { | |
| 5085 | - background: transparent; | |
| 5086 | - margin: 0; | |
| 5087 | - font-size: inherit; | |
| 5088 | - font-family: inherit; | |
| 5089 | - color: inherit; | |
| 5090 | - border: none; | |
| 5045 | +#elementor-template-library-header-actions > div { | |
| 5091 | 5046 | padding-inline-end: 16px; |
| 5092 | - cursor: pointer; | |
| 5093 | 5047 | } |
| 5094 | -#elementor-template-library-header-actions > div:focus-visible, | |
| 5095 | -#elementor-template-library-header-actions > button:focus-visible { | |
| 5096 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 5097 | - outline-offset: -2px; | |
| 5098 | - border-radius: 2px; | |
| 5099 | -} | |
| 5100 | 5048 | |
| 5101 | 5049 | #elementor-template-library-header-tools.e-hidden-disabled { |
| 5102 | 5050 | opacity: 0; |
| 5103 | 5051 | visibility: hidden; |
| @@ -5119,25 +5067,8 @@ | ||
| 5119 | 5067 | border-inline-end: var(--e-a-border); |
| 5120 | 5068 | cursor: pointer; |
| 5121 | 5069 | transition: color 0.5s; |
| 5122 | 5070 | } |
| 5123 | -#elementor-template-library-header-preview-back .elementor-template-library-header-back-button { | |
| 5124 | - background: transparent; | |
| 5125 | - margin: 0; | |
| 5126 | - font-size: inherit; | |
| 5127 | - font-family: inherit; | |
| 5128 | - color: inherit; | |
| 5129 | - border: none; | |
| 5130 | - display: flex; | |
| 5131 | - align-items: center; | |
| 5132 | - gap: 10px; | |
| 5133 | - cursor: pointer; | |
| 5134 | -} | |
| 5135 | -#elementor-template-library-header-preview-back .elementor-template-library-header-back-button:focus-visible { | |
| 5136 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 5137 | - outline-offset: 2px; | |
| 5138 | - border-radius: 2px; | |
| 5139 | -} | |
| 5140 | 5071 | #elementor-template-library-header-preview-back:hover { |
| 5141 | 5072 | color: var(--e-a-color-txt-hover); |
| 5142 | 5073 | } |
| 5143 | 5074 | #elementor-template-library-header-preview-back i { |
| @@ -5170,20 +5101,15 @@ | ||
| 5170 | 5101 | } |
| 5171 | 5102 | #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 { |
| 5172 | 5103 | display: flex; |
| 5173 | 5104 | align-items: baseline; |
| 5174 | - border-radius: 3px; | |
| 5175 | 5105 | } |
| 5176 | -#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 { | |
| 5177 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 5178 | - outline-offset: 2px; | |
| 5179 | -} | |
| 5180 | 5106 | #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 { |
| 5181 | 5107 | align-items: center; |
| 5182 | 5108 | } |
| 5183 | 5109 | #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 { |
| 5184 | 5110 | font-size: 14px; |
| 5185 | - margin-inline-start: 5px; | |
| 5111 | + margin-left: 5px; | |
| 5186 | 5112 | } |
| 5187 | 5113 | #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 { |
| 5188 | 5114 | width: 200px; |
| 5189 | 5115 | margin: 0px 10px; |
| @@ -5282,14 +5208,8 @@ | ||
| 5282 | 5208 | align-items: center; |
| 5283 | 5209 | gap: 8px; |
| 5284 | 5210 | } |
| 5285 | 5211 | #elementor-template-library-templates .elementor-template-library-filter-toolbar-side-actions .elementor-template-library-action-item { |
| 5286 | - background: transparent; | |
| 5287 | - margin: 0; | |
| 5288 | - font-size: inherit; | |
| 5289 | - font-family: inherit; | |
| 5290 | - color: inherit; | |
| 5291 | - border: none; | |
| 5292 | 5212 | cursor: pointer; |
| 5293 | 5213 | font-size: 20px; |
| 5294 | 5214 | padding: 0 5px; |
| 5295 | 5215 | border-radius: 2px; |
| @@ -5329,19 +5249,15 @@ | ||
| 5329 | 5249 | padding: 8px; |
| 5330 | 5250 | border: var(--e-a-border); |
| 5331 | 5251 | border-radius: 3px; |
| 5332 | 5252 | } |
| 5333 | -#elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid:focus-visible { | |
| 5334 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 5335 | - outline-offset: 2px; | |
| 5336 | -} | |
| 5337 | -#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 { | |
| 5253 | +#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 { | |
| 5338 | 5254 | display: flex; |
| 5339 | 5255 | } |
| 5340 | -#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 { | |
| 5256 | +#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 { | |
| 5341 | 5257 | display: none; |
| 5342 | 5258 | } |
| 5343 | -#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 { | |
| 5259 | +#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 { | |
| 5344 | 5260 | display: flex !important; |
| 5345 | 5261 | } |
| 5346 | 5262 | #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-template-thumbnail { |
| 5347 | 5263 | width: 190px; |
| @@ -5347,14 +5263,14 @@ | ||
| 5347 | 5263 | width: 190px; |
| 5348 | 5264 | height: 100px; |
| 5349 | 5265 | position: relative; |
| 5350 | 5266 | border-radius: 3px; |
| 5351 | - margin-block-end: 4px; | |
| 5267 | + margin-bottom: 4px; | |
| 5352 | 5268 | overflow: hidden; |
| 5353 | 5269 | } |
| 5354 | 5270 | #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 { |
| 5355 | - -o-object-fit: contain; | |
| 5356 | - object-fit: contain; | |
| 5271 | + -o-object-fit: cover; | |
| 5272 | + object-fit: cover; | |
| 5357 | 5273 | width: 100%; |
| 5358 | 5274 | height: 100%; |
| 5359 | 5275 | } |
| 5360 | 5276 | #elementor-template-library-templates[data-template-view=grid] #elementor-template-library-templates-container .elementor-template-library-template-view-grid .elementor-template-library-template-preview { |
| @@ -5436,29 +5352,16 @@ | ||
| 5436 | 5352 | gap: 20px; |
| 5437 | 5353 | align-items: center; |
| 5438 | 5354 | flex: 1; |
| 5439 | 5355 | } |
| 5440 | -#elementor-template-library-templates .bulk-selection-action-bar button { | |
| 5441 | - background: transparent; | |
| 5442 | - margin: 0; | |
| 5443 | - font-size: inherit; | |
| 5444 | - font-family: inherit; | |
| 5445 | - color: inherit; | |
| 5446 | - border: none; | |
| 5356 | +#elementor-template-library-templates .bulk-selection-action-bar i { | |
| 5447 | 5357 | cursor: pointer; |
| 5448 | - display: flex; | |
| 5449 | - align-items: center; | |
| 5450 | - justify-content: center; | |
| 5358 | + font-size: 18px; | |
| 5451 | 5359 | } |
| 5452 | -#elementor-template-library-templates .bulk-selection-action-bar button.disabled { | |
| 5360 | +#elementor-template-library-templates .bulk-selection-action-bar i.disabled { | |
| 5453 | 5361 | pointer-events: none; |
| 5454 | 5362 | opacity: 0.3; |
| 5455 | - cursor: not-allowed; | |
| 5456 | 5363 | } |
| 5457 | -#elementor-template-library-templates .bulk-selection-action-bar i { | |
| 5458 | - cursor: pointer; | |
| 5459 | - font-size: 18px; | |
| 5460 | -} | |
| 5461 | 5364 | #elementor-template-library-templates .bulk-selection-action-bar .eicon-editor-close { |
| 5462 | 5365 | font-size: 20px; |
| 5463 | 5366 | } |
| 5464 | 5367 | #elementor-template-library-templates #elementor-template-library-navigation-container { |
| @@ -5494,12 +5397,12 @@ | ||
| 5494 | 5397 | background: var(--e-a-bg-active); |
| 5495 | 5398 | } |
| 5496 | 5399 | #elementor-template-library-templates .elementor-template-library-local-column-1 input[type=checkbox] { |
| 5497 | 5400 | position: relative; |
| 5498 | - inset-block-start: 3px; | |
| 5401 | + top: 3px; | |
| 5499 | 5402 | } |
| 5500 | 5403 | #elementor-template-library-templates .elementor-template-library-local-column-1 input[type=checkbox]:checked { |
| 5501 | - inset-block-start: 0px; | |
| 5404 | + top: 0px; | |
| 5502 | 5405 | } |
| 5503 | 5406 | #elementor-template-library-templates .bulk-selection-item-checkbox:checked, |
| 5504 | 5407 | #elementor-template-library-templates #bulk-select-all:checked { |
| 5505 | 5408 | background: #69727D; |
| @@ -5540,11 +5443,11 @@ | ||
| 5540 | 5443 | .elementor-template-library-filter-select-source .source-option i { |
| 5541 | 5444 | margin-inline-end: 5px; |
| 5542 | 5445 | } |
| 5543 | 5446 | .elementor-template-library-filter-select-source .source-option .new-badge { |
| 5544 | - border: 1px solid var(--e-a-color-primary-bold-dark); | |
| 5447 | + border: 1px solid var(--e-a-color-primary-bold); | |
| 5545 | 5448 | padding: 2px 4px; |
| 5546 | - color: var(--e-a-color-primary-bold-dark); | |
| 5449 | + color: var(--e-a-color-primary-bold); | |
| 5547 | 5450 | border-radius: 10px; |
| 5548 | 5451 | font-size: 10px; |
| 5549 | 5452 | margin-inline-start: 5px; |
| 5550 | 5453 | } |
| @@ -5551,52 +5454,8 @@ | ||
| 5551 | 5454 | .elementor-template-library-filter-select-source .source-option.selected, .elementor-template-library-filter-select-source .source-option:hover { |
| 5552 | 5455 | background-color: var(--e-a-bg-hover); |
| 5553 | 5456 | } |
| 5554 | 5457 | |
| 5555 | -#elementor-template-library-connect-states .elementor-template-library-filter-toolbar { | |
| 5556 | - display: flex; | |
| 5557 | - align-items: center; | |
| 5558 | - justify-content: space-between; | |
| 5559 | -} | |
| 5560 | - | |
| 5561 | -#elementor-template-library-toolbar .source-option-badge, | |
| 5562 | -.elementor-template-library-connect-states-badge .source-option-badge { | |
| 5563 | - display: flex; | |
| 5564 | - align-items: center; | |
| 5565 | - gap: 6px; | |
| 5566 | - padding: 6px 12px; | |
| 5567 | - border: none; | |
| 5568 | - border-radius: 20px; | |
| 5569 | - font-size: 14px; | |
| 5570 | - font-weight: 500; | |
| 5571 | - white-space: nowrap; | |
| 5572 | - margin-inline-start: auto; | |
| 5573 | - margin-inline-end: 15px; | |
| 5574 | -} | |
| 5575 | -#elementor-template-library-toolbar .source-option-badge i, | |
| 5576 | -.elementor-template-library-connect-states-badge .source-option-badge i { | |
| 5577 | - margin: 0; | |
| 5578 | - font-size: 14px; | |
| 5579 | -} | |
| 5580 | -#elementor-template-library-toolbar .source-option-badge.cloud-badge, | |
| 5581 | -.elementor-template-library-connect-states-badge .source-option-badge.cloud-badge { | |
| 5582 | - background-color: var(--e-a-bg-info); | |
| 5583 | - color: var(--e-a-color-info); | |
| 5584 | -} | |
| 5585 | -#elementor-template-library-toolbar .source-option-badge.cloud-badge i, | |
| 5586 | -.elementor-template-library-connect-states-badge .source-option-badge.cloud-badge i { | |
| 5587 | - color: var(--e-a-color-info); | |
| 5588 | -} | |
| 5589 | -#elementor-template-library-toolbar .source-option-badge.site-badge, | |
| 5590 | -.elementor-template-library-connect-states-badge .source-option-badge.site-badge { | |
| 5591 | - background-color: var(--e-a-bg-warning); | |
| 5592 | - color: var(--e-a-btn-bg-warning-hover); | |
| 5593 | -} | |
| 5594 | -#elementor-template-library-toolbar .source-option-badge.site-badge i, | |
| 5595 | -.elementor-template-library-connect-states-badge .source-option-badge.site-badge i { | |
| 5596 | - color: var(--e-a-btn-bg-warning-hover); | |
| 5597 | -} | |
| 5598 | - | |
| 5599 | 5458 | #elementor-template-library-filter-toolbar-remote { |
| 5600 | 5459 | font-size: 11px; |
| 5601 | 5460 | } |
| 5602 | 5461 | |
| @@ -5671,9 +5530,9 @@ | ||
| 5671 | 5530 | content: "\e923"; |
| 5672 | 5531 | } |
| 5673 | 5532 | |
| 5674 | 5533 | #elementor-template-library-create-new-folder-dialog .elementor-create-folder-template-dialog__p { |
| 5675 | - margin-block-end: 10px; | |
| 5534 | + margin-bottom: 10px; | |
| 5676 | 5535 | } |
| 5677 | 5536 | |
| 5678 | 5537 | #elementor-template-library-filter-text-wrapper { |
| 5679 | 5538 | width: 200px; |
| @@ -5685,9 +5544,9 @@ | ||
| 5685 | 5544 | inset-inline-end: 0; |
| 5686 | 5545 | transform: translateY(-50%); |
| 5687 | 5546 | } |
| 5688 | 5547 | #elementor-template-library-filter-text-wrapper i.eicon-loading.eicon-animation-spin { |
| 5689 | - inset-block-start: 25%; | |
| 5548 | + top: 25%; | |
| 5690 | 5549 | } |
| 5691 | 5550 | |
| 5692 | 5551 | #elementor-template-library-filter-text { |
| 5693 | 5552 | border: none; |
| @@ -5714,32 +5573,19 @@ | ||
| 5714 | 5573 | padding: 8px; |
| 5715 | 5574 | border: var(--e-a-border); |
| 5716 | 5575 | border-radius: 3px; |
| 5717 | 5576 | } |
| 5718 | -.elementor-template-library-template-remote:focus-visible { | |
| 5719 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 5720 | - outline-offset: 2px; | |
| 5721 | -} | |
| 5722 | -.elementor-template-library-template-remote:hover, .elementor-template-library-template-remote:focus, .elementor-template-library-template-remote:focus-within { | |
| 5577 | +.elementor-template-library-template-remote:hover { | |
| 5723 | 5578 | background-color: var(--e-a-bg-hover); |
| 5724 | 5579 | } |
| 5725 | -.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 { | |
| 5726 | - opacity: 1; | |
| 5727 | -} | |
| 5728 | -.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 { | |
| 5580 | +.elementor-template-library-template-remote:hover .elementor-template-library-template-name { | |
| 5729 | 5581 | display: none; |
| 5730 | 5582 | } |
| 5731 | -.elementor-template-library-template-remote:hover .elementor-template-library-favorite, | |
| 5732 | -.elementor-template-library-template-remote:hover .elementor-template-library-template-action, .elementor-template-library-template-remote:focus .elementor-template-library-favorite, | |
| 5733 | -.elementor-template-library-template-remote:focus .elementor-template-library-template-action, .elementor-template-library-template-remote:focus-within .elementor-template-library-favorite, | |
| 5734 | -.elementor-template-library-template-remote:focus-within .elementor-template-library-template-action { | |
| 5735 | - display: initial; | |
| 5736 | -} | |
| 5737 | -.elementor-template-library-template-remote:not(:hover):not(:focus):not(:focus-within) .elementor-template-library-template-preview { | |
| 5583 | +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-template-preview { | |
| 5738 | 5584 | opacity: 0; |
| 5739 | 5585 | } |
| 5740 | -.elementor-template-library-template-remote:not(:hover):not(:focus):not(:focus-within) .elementor-template-library-favorite, | |
| 5741 | -.elementor-template-library-template-remote:not(:hover):not(:focus):not(:focus-within) .elementor-template-library-template-action { | |
| 5586 | +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-favorite, | |
| 5587 | +.elementor-template-library-template-remote:not(:hover) .elementor-template-library-template-action { | |
| 5742 | 5588 | display: none; |
| 5743 | 5589 | } |
| 5744 | 5590 | .elementor-template-library-template-remote.elementor-template-library-pro-template .elementor-template-library-template-body:before { |
| 5745 | 5591 | content: var(--elementor-template-library-subscription-plan-label); |
| @@ -5774,9 +5620,9 @@ | ||
| 5774 | 5620 | } |
| 5775 | 5621 | .elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp) .elementor-template-library-template-name { |
| 5776 | 5622 | display: none; |
| 5777 | 5623 | } |
| 5778 | -.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 { | |
| 5624 | +.elementor-template-library-template-remote:not(.elementor-template-library-template-page):not(.elementor-template-library-template-lp):not(:hover) .elementor-template-library-template-footer { | |
| 5779 | 5625 | transform: translateY(100%); |
| 5780 | 5626 | } |
| 5781 | 5627 | .elementor-template-library-template-remote .elementor-template-library-template-body { |
| 5782 | 5628 | position: relative; |
| @@ -5801,11 +5647,11 @@ | ||
| 5801 | 5647 | } |
| 5802 | 5648 | .elementor-template-library-template-remote .elementor-template-library-template-preview i { |
| 5803 | 5649 | font-size: 20px; |
| 5804 | 5650 | position: absolute; |
| 5805 | - inset-block-start: 50%; | |
| 5806 | - inset-inline-start: 50%; | |
| 5807 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 5651 | + top: 50%; | |
| 5652 | + left: 50%; | |
| 5653 | + transform: translate(-50%, -50%); | |
| 5808 | 5654 | } |
| 5809 | 5655 | .elementor-template-library-template-remote .elementor-template-library-template-footer { |
| 5810 | 5656 | display: flex; |
| 5811 | 5657 | justify-content: space-between; |
| @@ -5825,22 +5671,10 @@ | ||
| 5825 | 5671 | .elementor-template-library-template-remote .elementor-template-library-favorite { |
| 5826 | 5672 | margin-inline-start: auto; |
| 5827 | 5673 | } |
| 5828 | 5674 | .elementor-template-library-template-remote .elementor-template-library-template-favorite-input { |
| 5829 | - position: absolute; | |
| 5830 | - width: 1px; | |
| 5831 | - height: 1px; | |
| 5832 | - padding: 0; | |
| 5833 | - margin: -1px; | |
| 5834 | - overflow: hidden; | |
| 5835 | - clip: rect(0, 0, 0, 0); | |
| 5836 | - white-space: nowrap; | |
| 5837 | - border: 0; | |
| 5675 | + display: none; | |
| 5838 | 5676 | } |
| 5839 | -.elementor-template-library-template-remote .elementor-template-library-template-favorite-input:focus-visible + .elementor-template-library-template-favorite-label { | |
| 5840 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 5841 | - outline-offset: 2px; | |
| 5842 | -} | |
| 5843 | 5677 | .elementor-template-library-template-remote .elementor-template-library-template-favorite-input:checked + .elementor-template-library-template-favorite-label i:before { |
| 5844 | 5678 | content: "\e93f"; |
| 5845 | 5679 | color: var(--e-a-color-primary-bold); |
| 5846 | 5680 | } |
| @@ -5959,22 +5793,11 @@ | ||
| 5959 | 5793 | box-shadow: 1px 3px 11px rgba(0, 0, 0, 0.3); |
| 5960 | 5794 | inset-block-start: 100%; |
| 5961 | 5795 | inset-inline-end: 0; |
| 5962 | 5796 | z-index: 1; |
| 5963 | - list-style: none; | |
| 5964 | - margin: 0; | |
| 5965 | - padding: 0; | |
| 5966 | 5797 | } |
| 5967 | -.elementor-template-library-template-local .elementor-template-library-template-more > li button, | |
| 5968 | -.elementor-template-library-template-local .elementor-template-library-template-more > li a, | |
| 5969 | -.elementor-template-library-template-cloud .elementor-template-library-template-more > li button, | |
| 5970 | -.elementor-template-library-template-cloud .elementor-template-library-template-more > li a { | |
| 5971 | - background: transparent; | |
| 5972 | - margin: 0; | |
| 5973 | - font-size: inherit; | |
| 5974 | - font-family: inherit; | |
| 5975 | - color: inherit; | |
| 5976 | - border: none; | |
| 5798 | +.elementor-template-library-template-local .elementor-template-library-template-more > div, | |
| 5799 | +.elementor-template-library-template-cloud .elementor-template-library-template-more > div { | |
| 5977 | 5800 | padding: 10px 20px; |
| 5978 | 5801 | font-size: 11px; |
| 5979 | 5802 | cursor: pointer; |
| 5980 | 5803 | display: flex; |
| @@ -5979,21 +5802,25 @@ | ||
| 5979 | 5802 | cursor: pointer; |
| 5980 | 5803 | display: flex; |
| 5981 | 5804 | align-items: center; |
| 5982 | 5805 | gap: 8px; |
| 5983 | - width: 100%; | |
| 5984 | 5806 | } |
| 5985 | -.elementor-template-library-template-local .elementor-template-library-template-more > li button.disabled, | |
| 5986 | -.elementor-template-library-template-local .elementor-template-library-template-more > li a.disabled, | |
| 5987 | -.elementor-template-library-template-cloud .elementor-template-library-template-more > li button.disabled, | |
| 5988 | -.elementor-template-library-template-cloud .elementor-template-library-template-more > li a.disabled { | |
| 5807 | +.elementor-template-library-template-local .elementor-template-library-template-more > div.disabled, | |
| 5808 | +.elementor-template-library-template-cloud .elementor-template-library-template-more > div.disabled { | |
| 5989 | 5809 | cursor: not-allowed; |
| 5990 | 5810 | color: var(--e-a-color-txt-disabled); |
| 5991 | 5811 | } |
| 5992 | -.elementor-template-library-template-local .elementor-template-library-template-more > li a, | |
| 5993 | -.elementor-template-library-template-cloud .elementor-template-library-template-more > li a { | |
| 5812 | +.elementor-template-library-template-local .elementor-template-library-template-more > div.disabled a, | |
| 5813 | +.elementor-template-library-template-cloud .elementor-template-library-template-more > div.disabled a { | |
| 5814 | + color: var(--e-a-color-txt-disabled); | |
| 5815 | + cursor: not-allowed; | |
| 5816 | +} | |
| 5817 | +.elementor-template-library-template-local .elementor-template-library-template-more a, | |
| 5818 | +.elementor-template-library-template-cloud .elementor-template-library-template-more a { | |
| 5994 | 5819 | color: var(--e-a-color-txt); |
| 5995 | - text-decoration: none; | |
| 5820 | + display: flex; | |
| 5821 | + align-items: center; | |
| 5822 | + gap: 8px; | |
| 5996 | 5823 | } |
| 5997 | 5824 | .elementor-template-library-template-local .elementor-template-library-template-more .elementor-template-library-template-delete, |
| 5998 | 5825 | .elementor-template-library-template-cloud .elementor-template-library-template-more .elementor-template-library-template-delete { |
| 5999 | 5826 | color: var(--e-a-color-danger); |
| @@ -6005,14 +5832,8 @@ | ||
| 6005 | 5832 | .elementor-template-library-template-local .elementor-template-library-template-more-toggle, |
| 6006 | 5833 | .elementor-template-library-template-cloud .elementor-template-library-template-more-toggle { |
| 6007 | 5834 | margin-inline-start: auto; |
| 6008 | 5835 | cursor: pointer; |
| 6009 | - background: none; | |
| 6010 | - border: none; | |
| 6011 | - padding: 0; | |
| 6012 | - display: flex; | |
| 6013 | - align-items: center; | |
| 6014 | - justify-content: center; | |
| 6015 | 5836 | } |
| 6016 | 5837 | .elementor-template-library-template-local .elementor-template-library-template-more-toggle i, |
| 6017 | 5838 | .elementor-template-library-template-cloud .elementor-template-library-template-more-toggle i { |
| 6018 | 5839 | font-size: 20px; |
| @@ -6079,11 +5900,9 @@ | ||
| 6079 | 5900 | display: flex; |
| 6080 | 5901 | align-items: center; |
| 6081 | 5902 | } |
| 6082 | 5903 | .elementor-template-library-template-local .elementor-template-library-template-controls > div, |
| 6083 | -.elementor-template-library-template-local .elementor-template-library-template-controls > button, | |
| 6084 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-controls > div, | |
| 6085 | -.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-controls > button { | |
| 5904 | +.elementor-template-library-template-cloud:not(.elementor-template-library-template-view-grid) .elementor-template-library-template-controls > div { | |
| 6086 | 5905 | cursor: pointer; |
| 6087 | 5906 | transition: color 0.5s; |
| 6088 | 5907 | } |
| 6089 | 5908 | .elementor-template-library-template-local .elementor-template-library-template-insert.disabled, |
| @@ -6168,18 +5987,18 @@ | ||
| 6168 | 5987 | #elementor-template-library-save-template-form > * { |
| 6169 | 5988 | height: 55px; |
| 6170 | 5989 | font-size: 16px; |
| 6171 | 5990 | } |
| 5991 | +#elementor-template-library-save-template-form .cloud-library-form-inputs { | |
| 5992 | + display: block; | |
| 5993 | + width: 500px; | |
| 5994 | + margin: 0 auto; | |
| 5995 | +} | |
| 6172 | 5996 | #elementor-template-library-save-template-form .cloud-library-form-inputs > * { |
| 6173 | 5997 | height: 55px; |
| 6174 | 5998 | font-size: 16px; |
| 6175 | 5999 | margin-block-end: 15px; |
| 6176 | 6000 | } |
| 6177 | -#elementor-template-library-save-template-form .cloud-library-form-inputs { | |
| 6178 | - display: block; | |
| 6179 | - width: 500px; | |
| 6180 | - margin: 0 auto; | |
| 6181 | -} | |
| 6182 | 6001 | #elementor-template-library-save-template-form .cloud-library-form-inputs .upgrade-tooltip, |
| 6183 | 6002 | #elementor-template-library-save-template-form .cloud-library-form-inputs .connect-badge { |
| 6184 | 6003 | display: none; |
| 6185 | 6004 | } |
| @@ -6205,24 +6024,15 @@ | ||
| 6205 | 6024 | #elementor-template-library-save-template-form .cloud-library-form-inputs .ellipsis-container { |
| 6206 | 6025 | display: inline; |
| 6207 | 6026 | background: var(--e-a-bg-hover); |
| 6208 | 6027 | padding: 0 2px 1px; |
| 6209 | - border: none; | |
| 6210 | 6028 | border-radius: 2px; |
| 6211 | 6029 | vertical-align: bottom; |
| 6212 | 6030 | cursor: pointer; |
| 6213 | - font-family: inherit; | |
| 6214 | - font-size: inherit; | |
| 6215 | - color: inherit; | |
| 6216 | - line-height: inherit; | |
| 6217 | 6031 | } |
| 6218 | 6032 | #elementor-template-library-save-template-form .cloud-library-form-inputs .ellipsis-container:hover { |
| 6219 | 6033 | background: var(--e-a-bg-active); |
| 6220 | 6034 | } |
| 6221 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .ellipsis-container:focus-visible { | |
| 6222 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 6223 | - outline-offset: 2px; | |
| 6224 | -} | |
| 6225 | 6035 | #elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .upgrade-tooltip, |
| 6226 | 6036 | #elementor-template-library-save-template-form .cloud-library-form-inputs.promotion .connect-badge, |
| 6227 | 6037 | #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, |
| 6228 | 6038 | #elementor-template-library-save-template-form .cloud-library-form-inputs.max-capacity .connect-badge, |
| @@ -6275,9 +6085,9 @@ | ||
| 6275 | 6085 | position: relative; |
| 6276 | 6086 | } |
| 6277 | 6087 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections input[type=checkbox]:checked { |
| 6278 | 6088 | background: #69727D; |
| 6279 | - inset-block-start: -3px; | |
| 6089 | + top: -3px; | |
| 6280 | 6090 | position: relative; |
| 6281 | 6091 | } |
| 6282 | 6092 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input { |
| 6283 | 6093 | position: relative; |
| @@ -6286,22 +6096,18 @@ | ||
| 6286 | 6096 | #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 { |
| 6287 | 6097 | white-space: nowrap; |
| 6288 | 6098 | text-overflow: ellipsis; |
| 6289 | 6099 | overflow: hidden; |
| 6290 | - overflow: visible; | |
| 6291 | - display: inline-flex; | |
| 6292 | - align-items: baseline; | |
| 6293 | 6100 | line-height: 27px; |
| 6294 | 6101 | } |
| 6295 | 6102 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #cloud, |
| 6296 | 6103 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #local { |
| 6297 | - flex-shrink: 0; | |
| 6298 | 6104 | position: relative; |
| 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 #cloud:checked, |
| 6302 | 6108 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #local:checked { |
| 6303 | - inset-block-start: -2px; | |
| 6109 | + top: -2px; | |
| 6304 | 6110 | } |
| 6305 | 6111 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .eicon-ellipsis-h { |
| 6306 | 6112 | vertical-align: bottom; |
| 6307 | 6113 | } |
| @@ -6312,26 +6118,15 @@ | ||
| 6312 | 6118 | } |
| 6313 | 6119 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .selected-folder { |
| 6314 | 6120 | display: none; |
| 6315 | 6121 | margin-inline-end: 5px; |
| 6316 | - align-items: baseline; | |
| 6317 | - white-space: nowrap; | |
| 6318 | - text-overflow: ellipsis; | |
| 6319 | - overflow: hidden; | |
| 6320 | 6122 | } |
| 6321 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .selected-folder[style*="display: inline"] { | |
| 6322 | - display: inline-flex !important; | |
| 6323 | -} | |
| 6324 | 6123 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .selected-folder-text { |
| 6325 | 6124 | text-decoration: underline; |
| 6326 | 6125 | cursor: pointer; |
| 6327 | - white-space: nowrap; | |
| 6328 | - text-overflow: ellipsis; | |
| 6329 | - overflow: hidden; | |
| 6330 | 6126 | } |
| 6331 | 6127 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input .eicon-editor-close { |
| 6332 | 6128 | cursor: pointer; |
| 6333 | - flex-shrink: 0; | |
| 6334 | 6129 | } |
| 6335 | 6130 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input #elementor-template-library-connect__badge { |
| 6336 | 6131 | color: var(--e-a-color-primary-bold); |
| 6337 | 6132 | font-size: 14px; |
| @@ -6341,9 +6136,9 @@ | ||
| 6341 | 6136 | } |
| 6342 | 6137 | #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown { |
| 6343 | 6138 | display: none; |
| 6344 | 6139 | position: absolute; |
| 6345 | - inset-block-start: 40px; | |
| 6140 | + top: 40px; | |
| 6346 | 6141 | background-color: var(--e-a-bg-default); |
| 6347 | 6142 | min-width: 187px; |
| 6348 | 6143 | overflow: auto; |
| 6349 | 6144 | box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); |
| @@ -6367,9 +6162,8 @@ | ||
| 6367 | 6162 | } |
| 6368 | 6163 | #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item { |
| 6369 | 6164 | padding: 5px 15px; |
| 6370 | 6165 | cursor: pointer; |
| 6371 | - list-style: none; | |
| 6372 | 6166 | } |
| 6373 | 6167 | #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item[data-id="0"] .eicon-folder-o { |
| 6374 | 6168 | display: none; |
| 6375 | 6169 | } |
| @@ -6378,15 +6172,11 @@ | ||
| 6378 | 6172 | } |
| 6379 | 6173 | #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item[data-id="0"] { |
| 6380 | 6174 | text-decoration: underline; |
| 6381 | 6175 | } |
| 6382 | -#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 { | |
| 6176 | +#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 { | |
| 6383 | 6177 | background: var(--e-a-border-color); |
| 6384 | 6178 | } |
| 6385 | -#elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item:focus-visible { | |
| 6386 | - outline: 2px solid var(--e-a-border-color-focus); | |
| 6387 | - outline-offset: -2px; | |
| 6388 | -} | |
| 6389 | 6179 | #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .folder-item.disabled { |
| 6390 | 6180 | pointer-events: none; |
| 6391 | 6181 | opacity: 0.3; |
| 6392 | 6182 | } |
| @@ -6392,9 +6182,10 @@ | ||
| 6392 | 6182 | } |
| 6393 | 6183 | #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .no-results { |
| 6394 | 6184 | text-align: center; |
| 6395 | 6185 | font-size: 13px; |
| 6396 | - margin: 0 20px; | |
| 6186 | + width: 155px; | |
| 6187 | + margin: 0 auto; | |
| 6397 | 6188 | padding-block: 15px; |
| 6398 | 6189 | pointer-events: none; |
| 6399 | 6190 | } |
| 6400 | 6191 | #elementor-template-library-save-template-form .cloud-library-form-inputs .cloud-folder-selection-dropdown .no-results i { |
| @@ -6408,259 +6199,8 @@ | ||
| 6408 | 6199 | #elementor-template-library-save-template-form .cloud-library-form-inputs .source-selections-input.disabled { |
| 6409 | 6200 | pointer-events: none; |
| 6410 | 6201 | opacity: 0.3; |
| 6411 | 6202 | } |
| 6412 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b { | |
| 6413 | - display: flex; | |
| 6414 | - flex-direction: column; | |
| 6415 | - width: 600px; | |
| 6416 | - text-align: start; | |
| 6417 | -} | |
| 6418 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .template-name-label, | |
| 6419 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .save-location-label { | |
| 6420 | - font-size: 12px; | |
| 6421 | - font-weight: 400; | |
| 6422 | - color: var(--e-a-color-txt); | |
| 6423 | -} | |
| 6424 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b #elementor-template-library-save-template-name { | |
| 6425 | - width: 100%; | |
| 6426 | - padding: 12px 15px; | |
| 6427 | - border: var(--e-a-border-bold); | |
| 6428 | - border-radius: 3px; | |
| 6429 | - margin-block-end: 0; | |
| 6430 | -} | |
| 6431 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections { | |
| 6432 | - border: none; | |
| 6433 | - padding: 0; | |
| 6434 | - gap: 12px; | |
| 6435 | - margin-block-start: 20px; | |
| 6436 | -} | |
| 6437 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input { | |
| 6438 | - display: flex; | |
| 6439 | - align-items: center; | |
| 6440 | - padding: 12px 15px; | |
| 6441 | - border: var(--e-a-border-bold); | |
| 6442 | - border-radius: 3px; | |
| 6443 | - width: 100%; | |
| 6444 | - line-height: normal; | |
| 6445 | - gap: 8px; | |
| 6446 | -} | |
| 6447 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input:has(input[type=checkbox]:checked) { | |
| 6448 | - border-color: var(--e-a-color-txt); | |
| 6449 | -} | |
| 6450 | -#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 { | |
| 6451 | - display: flex; | |
| 6452 | -} | |
| 6453 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input input[type=checkbox] { | |
| 6454 | - margin-inline-end: 0; | |
| 6455 | - flex-shrink: 0; | |
| 6456 | - position: relative; | |
| 6457 | -} | |
| 6458 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input input[type=checkbox]:checked { | |
| 6459 | - inset-block-start: 0; | |
| 6460 | -} | |
| 6461 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input input[type=checkbox]::after { | |
| 6462 | - content: ""; | |
| 6463 | - position: absolute; | |
| 6464 | - inset-inline-end: -8px; | |
| 6465 | - width: 1px; | |
| 6466 | - height: 18px; | |
| 6467 | - background-color: var(--e-a-border-color); | |
| 6468 | -} | |
| 6469 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input > i:first-of-type { | |
| 6470 | - margin-inline-start: 12px; | |
| 6471 | - margin-inline-end: 4px; | |
| 6472 | - font-size: 24px; | |
| 6473 | - color: var(--e-a-color-txt); | |
| 6474 | -} | |
| 6475 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input > svg:first-of-type { | |
| 6476 | - margin-inline-start: 8px; | |
| 6477 | - margin-inline-end: 0; | |
| 6478 | - font-size: 24px; | |
| 6479 | - color: var(--e-a-color-txt); | |
| 6480 | -} | |
| 6481 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input label { | |
| 6482 | - flex: 0 0 auto; | |
| 6483 | - margin: 0; | |
| 6484 | - cursor: pointer; | |
| 6485 | -} | |
| 6486 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .divider { | |
| 6487 | - margin-inline: 0; | |
| 6488 | -} | |
| 6489 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .ellipsis-container { | |
| 6490 | - display: inline; | |
| 6491 | - background: transparent; | |
| 6492 | - padding: 0; | |
| 6493 | - border-radius: 0; | |
| 6494 | - vertical-align: baseline; | |
| 6495 | - text-decoration: underline; | |
| 6496 | - cursor: pointer; | |
| 6497 | - margin-inline-start: 0; | |
| 6498 | -} | |
| 6499 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .ellipsis-container:hover { | |
| 6500 | - background: transparent; | |
| 6501 | -} | |
| 6502 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .select-folder-link { | |
| 6503 | - color: var(--e-a-color-primary-bold); | |
| 6504 | - text-decoration: underline; | |
| 6505 | - cursor: pointer; | |
| 6506 | - margin-inline-start: 4px; | |
| 6507 | -} | |
| 6508 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .select-folder-link:hover { | |
| 6509 | - text-decoration: none; | |
| 6510 | -} | |
| 6511 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge { | |
| 6512 | - display: none; | |
| 6513 | - border: none; | |
| 6514 | - padding: 0; | |
| 6515 | - border-radius: 0; | |
| 6516 | - margin-inline-start: 0; | |
| 6517 | - background: transparent; | |
| 6518 | - transition: background-color 0.2s; | |
| 6519 | - padding: 3px 8px; | |
| 6520 | -} | |
| 6521 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge:hover { | |
| 6522 | - background-color: var(--e-a-btn-bg-primary-hover); | |
| 6523 | - border-radius: 3px; | |
| 6524 | -} | |
| 6525 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge a { | |
| 6526 | - color: var(--e-a-btn-bg-accent); | |
| 6527 | - text-decoration: none; | |
| 6528 | - display: flex; | |
| 6529 | - align-items: center; | |
| 6530 | - gap: 4px; | |
| 6531 | - font-size: 14px; | |
| 6532 | - font-weight: 500; | |
| 6533 | -} | |
| 6534 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .upgrade-badge a i { | |
| 6535 | - margin: 0; | |
| 6536 | - font-size: 14px; | |
| 6537 | -} | |
| 6538 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge { | |
| 6539 | - display: none; | |
| 6540 | -} | |
| 6541 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge .connect-divider { | |
| 6542 | - color: var(--e-a-color-txt-muted); | |
| 6543 | - margin-inline: 5px; | |
| 6544 | -} | |
| 6545 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge a { | |
| 6546 | - color: var(--e-a-color-info); | |
| 6547 | - text-decoration: underline; | |
| 6548 | -} | |
| 6549 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .connect-badge a:hover { | |
| 6550 | - text-decoration: none; | |
| 6551 | -} | |
| 6552 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge { | |
| 6553 | - display: flex; | |
| 6554 | - align-items: center; | |
| 6555 | - gap: 6px; | |
| 6556 | - padding: 6px 12px; | |
| 6557 | - border: none; | |
| 6558 | - border-radius: 20px; | |
| 6559 | - font-size: 14px; | |
| 6560 | - font-weight: 500; | |
| 6561 | - cursor: pointer; | |
| 6562 | - transition: opacity 0.2s; | |
| 6563 | - margin-inline-start: auto; | |
| 6564 | -} | |
| 6565 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge:hover { | |
| 6566 | - opacity: 0.8; | |
| 6567 | -} | |
| 6568 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge i { | |
| 6569 | - margin: 0; | |
| 6570 | - font-size: 14px; | |
| 6571 | -} | |
| 6572 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.cloud-account-badge { | |
| 6573 | - background-color: var(--e-a-bg-info); | |
| 6574 | - color: var(--e-a-color-info); | |
| 6575 | -} | |
| 6576 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.cloud-account-badge i { | |
| 6577 | - color: var(--e-a-color-info); | |
| 6578 | -} | |
| 6579 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.site-account-badge { | |
| 6580 | - background-color: var(--e-a-bg-warning); | |
| 6581 | - color: var(--e-a-btn-bg-warning-hover); | |
| 6582 | -} | |
| 6583 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .account-badge.site-account-badge i { | |
| 6584 | - color: var(--e-a-btn-bg-warning-hover); | |
| 6585 | -} | |
| 6586 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .selected-folder { | |
| 6587 | - display: none; | |
| 6588 | - margin-inline-start: 8px; | |
| 6589 | - align-items: center; | |
| 6590 | - gap: 6px; | |
| 6591 | -} | |
| 6592 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .selected-folder[style*="display: inline"] { | |
| 6593 | - display: inline-flex !important; | |
| 6594 | -} | |
| 6595 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .selected-folder-text { | |
| 6596 | - text-decoration: underline; | |
| 6597 | - cursor: pointer; | |
| 6598 | -} | |
| 6599 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections .source-selections-input .eicon-editor-close { | |
| 6600 | - cursor: pointer; | |
| 6601 | - font-size: 14px; | |
| 6602 | -} | |
| 6603 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .cloud-folder-selection-dropdown { | |
| 6604 | - inset-block-start: 75px; | |
| 6605 | - inset-inline-start: 230px; | |
| 6606 | -} | |
| 6607 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:not(:has(.connect-badge)) .connect-badge { | |
| 6608 | - display: none; | |
| 6609 | -} | |
| 6610 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) .connect-badge { | |
| 6611 | - display: inline; | |
| 6612 | -} | |
| 6613 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) .upgrade-badge { | |
| 6614 | - display: none; | |
| 6615 | -} | |
| 6616 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) { | |
| 6617 | - border-color: var(--e-a-border-color); | |
| 6618 | -} | |
| 6619 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) > i:first-of-type, | |
| 6620 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) label, | |
| 6621 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) .divider { | |
| 6622 | - color: var(--e-a-color-txt-disabled); | |
| 6623 | -} | |
| 6624 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b .source-selections-input.cloud:has(.connect-badge) input[type=checkbox]::after { | |
| 6625 | - background-color: var(--e-a-color-txt-disabled); | |
| 6626 | -} | |
| 6627 | -#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 { | |
| 6628 | - border-color: var(--e-a-border-color); | |
| 6629 | -} | |
| 6630 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud > i:first-of-type, | |
| 6631 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud label, | |
| 6632 | -#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, | |
| 6633 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud label, | |
| 6634 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud .divider { | |
| 6635 | - color: var(--e-a-color-txt-disabled); | |
| 6636 | -} | |
| 6637 | -#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 { | |
| 6638 | - background-color: var(--e-a-color-txt-disabled); | |
| 6639 | -} | |
| 6640 | -#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 { | |
| 6641 | - display: inline-flex; | |
| 6642 | -} | |
| 6643 | -#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 { | |
| 6644 | - display: none; | |
| 6645 | -} | |
| 6646 | -#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 { | |
| 6647 | - display: block; | |
| 6648 | -} | |
| 6649 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.promotion .source-selections-input.cloud input[type=checkbox], | |
| 6650 | -#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], | |
| 6651 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .source-selections-input.cloud label { | |
| 6652 | - pointer-events: none; | |
| 6653 | -} | |
| 6654 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b.max-capacity .quota-cta { | |
| 6655 | - display: block; | |
| 6656 | - margin-block-start: 15px; | |
| 6657 | -} | |
| 6658 | -#elementor-template-library-save-template-form .cloud-library-form-inputs.variant-b #elementor-template-library-save-template-submit { | |
| 6659 | - align-self: center; | |
| 6660 | - margin-block-start: 20px; | |
| 6661 | - float: none; | |
| 6662 | -} | |
| 6663 | 6203 | |
| 6664 | 6204 | #elementor-template-library-save-template-name { |
| 6665 | 6205 | width: 500px; |
| 6666 | 6206 | padding-inline-start: 25px; |
| @@ -6754,11 +6294,11 @@ | ||
| 6754 | 6294 | } |
| 6755 | 6295 | |
| 6756 | 6296 | .elementor-template-library-blank-footer { |
| 6757 | 6297 | position: absolute; |
| 6758 | - inset-block-end: 70px; | |
| 6759 | - inset-inline-start: 50%; | |
| 6760 | - transform: translateX(calc(-50% * var(--direction-multiplier))); | |
| 6298 | + bottom: 70px; | |
| 6299 | + left: 50%; | |
| 6300 | + transform: translateX(-50%); | |
| 6761 | 6301 | font-style: italic; |
| 6762 | 6302 | color: var(--e-a-color-txt-muted); |
| 6763 | 6303 | } |
| 6764 | 6304 | @media (max-height: 700px) { |
| @@ -6791,11 +6331,9 @@ | ||
| 6791 | 6331 | margin-block-start: 10px; |
| 6792 | 6332 | } |
| 6793 | 6333 | |
| 6794 | 6334 | #elementor-library--infotip__dialog, |
| 6795 | -#elementor-library--connect_infotip__dialog, | |
| 6796 | -#elementor-library--cloud-upgrade__dialog, | |
| 6797 | -#elementor-library--site-info__dialog { | |
| 6335 | +#elementor-library--connect_infotip__dialog { | |
| 6798 | 6336 | position: absolute; |
| 6799 | 6337 | z-index: 10000; |
| 6800 | 6338 | background-color: var(--e-a-bg-default); |
| 6801 | 6339 | box-shadow: var(--e-a-popover-shadow); |
| @@ -6800,39 +6338,19 @@ | ||
| 6800 | 6338 | background-color: var(--e-a-bg-default); |
| 6801 | 6339 | box-shadow: var(--e-a-popover-shadow); |
| 6802 | 6340 | border-radius: var(--e-a-border-radius); |
| 6803 | 6341 | } |
| 6804 | -#elementor-library--infotip__dialog.variant-b, | |
| 6805 | -#elementor-library--connect_infotip__dialog.variant-b, | |
| 6806 | -#elementor-library--cloud-upgrade__dialog.variant-b, | |
| 6807 | -#elementor-library--site-info__dialog.variant-b { | |
| 6808 | - width: 200px; | |
| 6809 | - color: var(--e-a-color-txt-invert); | |
| 6810 | - background-color: var(--e-a-bg-secondary); | |
| 6811 | -} | |
| 6812 | -#elementor-library--infotip__dialog.variant-b .dialog-message, | |
| 6813 | -#elementor-library--connect_infotip__dialog.variant-b .dialog-message, | |
| 6814 | -#elementor-library--cloud-upgrade__dialog.variant-b .dialog-message, | |
| 6815 | -#elementor-library--site-info__dialog.variant-b .dialog-message { | |
| 6816 | - padding: 4px 8px 4px 8px; | |
| 6817 | -} | |
| 6818 | 6342 | #elementor-library--infotip__dialog__title, |
| 6819 | -#elementor-library--connect_infotip__dialog__title, | |
| 6820 | -#elementor-library--cloud-upgrade__dialog__title, | |
| 6821 | -#elementor-library--site-info__dialog__title { | |
| 6343 | +#elementor-library--connect_infotip__dialog__title { | |
| 6822 | 6344 | font-size: 14px; |
| 6823 | 6345 | } |
| 6824 | 6346 | #elementor-library--infotip__dialog .dialog-buttons-wrapper, |
| 6825 | -#elementor-library--connect_infotip__dialog .dialog-buttons-wrapper, | |
| 6826 | -#elementor-library--cloud-upgrade__dialog .dialog-buttons-wrapper, | |
| 6827 | -#elementor-library--site-info__dialog .dialog-buttons-wrapper { | |
| 6347 | +#elementor-library--connect_infotip__dialog .dialog-buttons-wrapper { | |
| 6828 | 6348 | padding: 10px 0 10px 10px; |
| 6829 | 6349 | float: inline-end; |
| 6830 | 6350 | } |
| 6831 | 6351 | #elementor-library--infotip__dialog .dialog-button, |
| 6832 | -#elementor-library--connect_infotip__dialog .dialog-button, | |
| 6833 | -#elementor-library--cloud-upgrade__dialog .dialog-button, | |
| 6834 | -#elementor-library--site-info__dialog .dialog-button { | |
| 6352 | +#elementor-library--connect_infotip__dialog .dialog-button { | |
| 6835 | 6353 | padding: 7px 25px; |
| 6836 | 6354 | font-size: 13px; |
| 6837 | 6355 | background: none; |
| 6838 | 6356 | color: var(--e-a-btn-bg-accent); |
| @@ -6840,11 +6358,9 @@ | ||
| 6840 | 6358 | font-weight: 500; |
| 6841 | 6359 | cursor: pointer; |
| 6842 | 6360 | } |
| 6843 | 6361 | #elementor-library--infotip__dialog:after, |
| 6844 | -#elementor-library--connect_infotip__dialog:after, | |
| 6845 | -#elementor-library--cloud-upgrade__dialog:after, | |
| 6846 | -#elementor-library--site-info__dialog:after { | |
| 6362 | +#elementor-library--connect_infotip__dialog:after { | |
| 6847 | 6363 | content: ""; |
| 6848 | 6364 | position: absolute; |
| 6849 | 6365 | inset-inline-end: 46%; |
| 6850 | 6366 | transform: scaleX(0.7); |
| @@ -6857,14 +6373,11 @@ | ||
| 6857 | 6373 | #elementor-library--infotip__dialog .dialog-message { |
| 6858 | 6374 | padding: 20px 20px 0px 20px; |
| 6859 | 6375 | } |
| 6860 | 6376 | #elementor-library--infotip__dialog:after { |
| 6861 | - inset-block-start: 100%; | |
| 6862 | - border-block-start-color: var(--e-a-bg-default); | |
| 6377 | + top: 100%; | |
| 6378 | + border-top-color: var(--e-a-bg-default); | |
| 6863 | 6379 | } |
| 6864 | -#elementor-library--infotip__dialog.variant-b:after { | |
| 6865 | - border-block-start-color: var(--e-a-bg-secondary); | |
| 6866 | -} | |
| 6867 | 6380 | |
| 6868 | 6381 | #elementor-library--connect_infotip__dialog { |
| 6869 | 6382 | width: 265px; |
| 6870 | 6383 | } |
| @@ -6870,207 +6383,13 @@ | ||
| 6870 | 6383 | } |
| 6871 | 6384 | #elementor-library--connect_infotip__dialog .dialog-message { |
| 6872 | 6385 | padding: 20px; |
| 6873 | 6386 | } |
| 6874 | -#elementor-library--connect_infotip__dialog:not(.variant-b):after { | |
| 6875 | - inset-block-end: 100%; | |
| 6876 | - border-block-end-color: var(--e-a-bg-default); | |
| 6387 | +#elementor-library--connect_infotip__dialog:after { | |
| 6388 | + bottom: 100%; | |
| 6389 | + border-bottom-color: var(--e-a-bg-default); | |
| 6877 | 6390 | } |
| 6878 | -#elementor-library--connect_infotip__dialog.variant-b:after { | |
| 6879 | - border-block-start-color: var(--e-a-bg-secondary); | |
| 6880 | - inset-block-start: 100%; | |
| 6881 | -} | |
| 6882 | -#elementor-library--connect_infotip__dialog.variant-b { | |
| 6883 | - width: 265px; | |
| 6884 | -} | |
| 6885 | 6391 | |
| 6886 | -#elementor-library--cloud-upgrade__dialog { | |
| 6887 | - width: 265px; | |
| 6888 | -} | |
| 6889 | -#elementor-library--cloud-upgrade__dialog:after { | |
| 6890 | - inset-block-start: 100%; | |
| 6891 | - border-block-start-color: var(--e-a-bg-default); | |
| 6892 | -} | |
| 6893 | -#elementor-library--cloud-upgrade__dialog.variant-b:after { | |
| 6894 | - border-block-start-color: var(--e-a-bg-secondary); | |
| 6895 | -} | |
| 6896 | - | |
| 6897 | -#elementor-library--site-info__dialog { | |
| 6898 | - width: 265px; | |
| 6899 | -} | |
| 6900 | -#elementor-library--site-info__dialog:after { | |
| 6901 | - inset-block-start: 100%; | |
| 6902 | - border-block-start-color: var(--e-a-bg-default); | |
| 6903 | -} | |
| 6904 | -#elementor-library--site-info__dialog.variant-b:after { | |
| 6905 | - border-block-start-color: var(--e-a-bg-secondary); | |
| 6906 | -} | |
| 6907 | - | |
| 6908 | -.elementor-global-styles-dialog { | |
| 6909 | - --gsd-color-text-primary: #0c0d0e; | |
| 6910 | - --gsd-color-text-secondary: #3f444b; | |
| 6911 | - --gsd-color-text-tertiary: #69727D; | |
| 6912 | - --gsd-color-divider: rgba(0, 0, 0, 0.12); | |
| 6913 | - --gsd-color-primary-main: #f0abfc; | |
| 6914 | - --gsd-color-primary-hover: #e879f9; | |
| 6915 | - --gsd-color-secondary-main: #515962; | |
| 6916 | - --gsd-border-radius: 4px; | |
| 6917 | - --gsd-spacing-horizontal: 24px; | |
| 6918 | - --gsd-font-family: 'Roboto', sans-serif; | |
| 6919 | - padding: 16px 0 0; | |
| 6920 | - min-width: 444px; | |
| 6921 | -} | |
| 6922 | -.elementor-global-styles-dialog__header { | |
| 6923 | - padding: 10px var(--gsd-spacing-horizontal) 0; | |
| 6924 | - margin-block-end: 16px; | |
| 6925 | -} | |
| 6926 | -.elementor-global-styles-dialog__header h2 { | |
| 6927 | - margin: 0 0 4px; | |
| 6928 | - font-family: var(--gsd-font-family); | |
| 6929 | - font-size: 16px; | |
| 6930 | - font-weight: 500; | |
| 6931 | - line-height: 1.3; | |
| 6932 | - color: var(--gsd-color-text-primary); | |
| 6933 | - letter-spacing: 0.15px; | |
| 6934 | -} | |
| 6935 | -.elementor-global-styles-dialog__header p { | |
| 6936 | - margin: 0; | |
| 6937 | - font-family: var(--gsd-font-family); | |
| 6938 | - font-size: 14px; | |
| 6939 | - font-weight: 400; | |
| 6940 | - line-height: 20px; | |
| 6941 | - color: var(--gsd-color-text-secondary); | |
| 6942 | - letter-spacing: 0.15px; | |
| 6943 | -} | |
| 6944 | -.elementor-global-styles-dialog__options { | |
| 6945 | - display: flex; | |
| 6946 | - flex-direction: column; | |
| 6947 | - gap: 12px; | |
| 6948 | - padding: 0 var(--gsd-spacing-horizontal); | |
| 6949 | -} | |
| 6950 | -.elementor-global-styles-dialog__radio-card { | |
| 6951 | - display: flex; | |
| 6952 | - gap: 0; | |
| 6953 | - padding: 12px 8px; | |
| 6954 | - border: 1px solid var(--gsd-color-divider); | |
| 6955 | - border-radius: var(--gsd-border-radius); | |
| 6956 | - cursor: pointer; | |
| 6957 | - transition: border-color 0.2s ease; | |
| 6958 | -} | |
| 6959 | -.elementor-global-styles-dialog__radio-card:has(input[type=radio]:checked) { | |
| 6960 | - border: 2px solid var(--gsd-color-text-primary); | |
| 6961 | - padding: 11px 7px; | |
| 6962 | -} | |
| 6963 | -.elementor-global-styles-dialog__radio-card input[type=radio] { | |
| 6964 | - flex-shrink: 0; | |
| 6965 | - width: 20px; | |
| 6966 | - height: 20px; | |
| 6967 | - margin: 9px; | |
| 6968 | - cursor: pointer; | |
| 6969 | - color: var(--gsd-color-text-tertiary); | |
| 6970 | - accent-color: var(--gsd-color-text-primary); | |
| 6971 | -} | |
| 6972 | -.elementor-global-styles-dialog__radio-card-content { | |
| 6973 | - display: flex; | |
| 6974 | - align-items: flex-start; | |
| 6975 | - flex-direction: column; | |
| 6976 | - flex: 1; | |
| 6977 | -} | |
| 6978 | -.elementor-global-styles-dialog__radio-label { | |
| 6979 | - font-family: var(--gsd-font-family); | |
| 6980 | - font-size: 14px; | |
| 6981 | - font-weight: 500; | |
| 6982 | - line-height: 18px; | |
| 6983 | - color: var(--gsd-color-text-primary); | |
| 6984 | - letter-spacing: 0.15px; | |
| 6985 | -} | |
| 6986 | -.elementor-global-styles-dialog__radio-description { | |
| 6987 | - font-family: var(--gsd-font-family); | |
| 6988 | - font-size: 12px; | |
| 6989 | - font-weight: 400; | |
| 6990 | - line-height: 20px; | |
| 6991 | - color: var(--gsd-color-text-secondary); | |
| 6992 | - letter-spacing: 0.4px; | |
| 6993 | -} | |
| 6994 | -.elementor-global-styles-dialog__checkbox-container { | |
| 6995 | - display: flex; | |
| 6996 | - align-items: flex-start; | |
| 6997 | - gap: 4px; | |
| 6998 | - padding: 0; | |
| 6999 | - margin-block-start: 0; | |
| 7000 | -} | |
| 7001 | -.elementor-global-styles-dialog__checkbox-option { | |
| 7002 | - display: flex; | |
| 7003 | - align-items: flex-start; | |
| 7004 | - gap: 4px; | |
| 7005 | - cursor: pointer; | |
| 7006 | -} | |
| 7007 | -.elementor-global-styles-dialog__checkbox-option input[type=checkbox] { | |
| 7008 | - width: 18px; | |
| 7009 | - height: 18px; | |
| 7010 | - margin: 4px; | |
| 7011 | - cursor: pointer; | |
| 7012 | -} | |
| 7013 | -.elementor-global-styles-dialog__checkbox-option input[type=checkbox]:checked { | |
| 7014 | - background-color: var(--gsd-color-text-tertiary); | |
| 7015 | -} | |
| 7016 | -.elementor-global-styles-dialog__checkbox-label { | |
| 7017 | - font-family: var(--gsd-font-family); | |
| 7018 | - font-size: 12px; | |
| 7019 | - font-weight: 400; | |
| 7020 | - line-height: 1.43; | |
| 7021 | - color: var(--gsd-color-text-primary); | |
| 7022 | - letter-spacing: 0.15px; | |
| 7023 | - padding-block-start: 4px; | |
| 7024 | - margin-inline-start: 4px; | |
| 7025 | -} | |
| 7026 | -.elementor-global-styles-dialog__checkbox-label a { | |
| 7027 | - color: #2563eb; | |
| 7028 | - text-decoration: underline; | |
| 7029 | -} | |
| 7030 | -.elementor-global-styles-dialog__checkbox-label a:hover { | |
| 7031 | - color: #2563eb; | |
| 7032 | -} | |
| 7033 | -.elementor-global-styles-dialog__footer { | |
| 7034 | - display: flex; | |
| 7035 | - justify-content: flex-end; | |
| 7036 | - align-items: center; | |
| 7037 | - gap: 8px; | |
| 7038 | - padding: 16px var(--gsd-spacing-horizontal); | |
| 7039 | -} | |
| 7040 | -.elementor-global-styles-dialog__button-cancel { | |
| 7041 | - padding: 6px 8px; | |
| 7042 | - font-family: var(--gsd-font-family); | |
| 7043 | - font-size: 15px; | |
| 7044 | - font-weight: 500; | |
| 7045 | - line-height: 24px; | |
| 7046 | - letter-spacing: 0.4px; | |
| 7047 | - color: var(--gsd-color-secondary-main); | |
| 7048 | - background: transparent; | |
| 7049 | - border: none; | |
| 7050 | - border-radius: var(--gsd-border-radius); | |
| 7051 | - cursor: pointer; | |
| 7052 | -} | |
| 7053 | -.elementor-global-styles-dialog__button-cancel:hover { | |
| 7054 | - background: rgba(0, 0, 0, 0.04); | |
| 7055 | -} | |
| 7056 | -.elementor-global-styles-dialog__button-insert { | |
| 7057 | - padding: 6px 16px; | |
| 7058 | - font-family: var(--gsd-font-family); | |
| 7059 | - font-size: 15px; | |
| 7060 | - font-weight: 500; | |
| 7061 | - line-height: 24px; | |
| 7062 | - letter-spacing: 0.4px; | |
| 7063 | - color: var(--gsd-color-text-primary); | |
| 7064 | - background: var(--gsd-color-primary-main); | |
| 7065 | - border: none; | |
| 7066 | - border-radius: var(--gsd-border-radius); | |
| 7067 | - cursor: pointer; | |
| 7068 | -} | |
| 7069 | -.elementor-global-styles-dialog__button-insert:hover { | |
| 7070 | - background: var(--gsd-color-primary-hover); | |
| 7071 | -} | |
| 7072 | - | |
| 7073 | 6392 | .elementor-tags-list { |
| 7074 | 6393 | display: none; |
| 7075 | 6394 | position: absolute; |
| 7076 | 6395 | width: 260px; |
| @@ -7254,14 +6573,8 @@ | ||
| 7254 | 6573 | cursor: default; |
| 7255 | 6574 | opacity: 0.5; |
| 7256 | 6575 | color: var(--e-a-color-disabled); |
| 7257 | 6576 | } |
| 7258 | -.elementor-context-menu-list__item--disabled.elementor-context-menu-list__item--has-shortcut-action { | |
| 7259 | - opacity: 1; | |
| 7260 | -} | |
| 7261 | -.elementor-context-menu-list__item--disabled.elementor-context-menu-list__item--has-shortcut-action > :not(.elementor-context-menu-list__item__shortcut) { | |
| 7262 | - opacity: 0.5; | |
| 7263 | -} | |
| 7264 | 6577 | .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 { |
| 7265 | 6578 | background-color: var(--e-a-bg-hover); |
| 7266 | 6579 | color: var(--e-a-color-hover); |
| 7267 | 6580 | } |
| @@ -7290,20 +6603,8 @@ | ||
| 7290 | 6603 | color: var(--e-a-color-primary-bold); |
| 7291 | 6604 | border-radius: 10px; |
| 7292 | 6605 | font-size: 10px; |
| 7293 | 6606 | } |
| 7294 | -.elementor-context-menu-list__item__shortcut__promotion-badge { | |
| 7295 | - display: flex; | |
| 7296 | - align-items: center; | |
| 7297 | - justify-content: center; | |
| 7298 | - width: 24px; | |
| 7299 | - height: 24px; | |
| 7300 | - border-radius: 50%; | |
| 7301 | - background-color: rgba(214, 16, 124, 0.12); | |
| 7302 | - color: var(--e-a-color-accent-promotion, #D6107C); | |
| 7303 | - font-size: 16px; | |
| 7304 | - cursor: pointer; | |
| 7305 | -} | |
| 7306 | 6607 | .elementor-context-menu-list__item__title, .elementor-context-menu-list__item__shortcut { |
| 7307 | 6608 | font-size: 14px; |
| 7308 | 6609 | font-style: normal; |
| 7309 | 6610 | font-weight: 400; |
| @@ -7701,9 +7002,9 @@ | ||
| 7701 | 7002 | transition: transform 0.5s; |
| 7702 | 7003 | z-index: 91; |
| 7703 | 7004 | } |
| 7704 | 7005 | .elementor-navigator__element__indicators:not(:hover) { |
| 7705 | - transform: translateX(calc(100% * var(--direction-multiplier) - var(--e-editor-navigator-indicator-width) * var(--direction-multiplier))); | |
| 7006 | + transform: translateX(calc(100% * var(--direction-multiplier) - var(--e-editor-navigator-indicator-width))); | |
| 7706 | 7007 | } |
| 7707 | 7008 | .elementor-navigator__element__indicator { |
| 7708 | 7009 | height: 100%; |
| 7709 | 7010 | width: 31px; |
| @@ -7730,9 +7031,9 @@ | ||
| 7730 | 7031 | |
| 7731 | 7032 | .e-notice-bar { |
| 7732 | 7033 | position: absolute; |
| 7733 | 7034 | width: 100%; |
| 7734 | - inset-block-end: 0; | |
| 7035 | + bottom: 0; | |
| 7735 | 7036 | display: flex; |
| 7736 | 7037 | align-items: center; |
| 7737 | 7038 | height: 40px; |
| 7738 | 7039 | color: #fff; |
| @@ -7979,11 +7280,11 @@ | ||
| 7979 | 7280 | flex-direction: column; |
| 7980 | 7281 | align-items: center; |
| 7981 | 7282 | width: 100%; |
| 7982 | 7283 | position: absolute; |
| 7983 | - inset-block-start: 50%; | |
| 7984 | - inset-inline-start: 50%; | |
| 7985 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 7284 | + top: 50%; | |
| 7285 | + left: 50%; | |
| 7286 | + transform: translate(-50%, -50%); | |
| 7986 | 7287 | padding: 1px; |
| 7987 | 7288 | } |
| 7988 | 7289 | .elementor-icons-manager__tab__item__icon { |
| 7989 | 7290 | font-size: 25px; |
| @@ -8027,12 +7328,11 @@ | ||
| 8027 | 7328 | } |
| 8028 | 7329 | .pickr .pcr-button:before, .pickr .pcr-button:after { |
| 8029 | 7330 | height: 12px; |
| 8030 | 7331 | width: 12px; |
| 8031 | - position: absolute; | |
| 8032 | - inset-block-start: 50%; | |
| 8033 | - inset-inline-start: 50%; | |
| 8034 | - transform: translate(calc(-50% * var(--direction-multiplier)), -50%); | |
| 7332 | + top: 50%; | |
| 7333 | + left: 50%; | |
| 7334 | + transform: translate(-50%, -50%); | |
| 8035 | 7335 | } |
| 8036 | 7336 | |
| 8037 | 7337 | .pcr-app { |
| 8038 | 7338 | background-color: var(--e-a-bg-default); |
| @@ -8172,9 +7472,9 @@ | ||
| 8172 | 7472 | } |
| 8173 | 7473 | |
| 8174 | 7474 | .select2-selection__arrow { |
| 8175 | 7475 | height: 27px; |
| 8176 | - inset-block-start: 0; | |
| 7476 | + top: 0; | |
| 8177 | 7477 | } |
| 8178 | 7478 | |
| 8179 | 7479 | .select2-results__option[aria-selected=true] { |
| 8180 | 7480 | background-color: var(--e-a-bg-active); |
| @@ -8233,10 +7533,11 @@ | ||
| 8233 | 7533 | padding: 0; |
| 8234 | 7534 | margin: 0; |
| 8235 | 7535 | height: 100px; |
| 8236 | 7536 | position: absolute; |
| 8237 | - inset-block-start: -60px; | |
| 8238 | - inset-inline: 0; | |
| 7537 | + top: -60px; | |
| 7538 | + left: 0; | |
| 7539 | + right: 0; | |
| 8239 | 7540 | } |
| 8240 | 7541 | #elementor-paste-area-dialog #elementor-paste-area-dialog__input:focus { |
| 8241 | 7542 | border-color: transparent; |
| 8242 | 7543 | outline: none; |
| @@ -8261,54 +7562,21 @@ | ||
| 8261 | 7562 | display: block; |
| 8262 | 7563 | margin: 10px -15px; |
| 8263 | 7564 | } |
| 8264 | 7565 | |
| 8265 | -.elementor-app-backdrop { | |
| 8266 | - position: fixed; | |
| 8267 | - z-index: 99998; | |
| 8268 | - inset: 0; | |
| 8269 | - background: rgba(0, 0, 0, 0.5); | |
| 8270 | - opacity: 0; | |
| 8271 | - transition: opacity 0.25s ease; | |
| 8272 | -} | |
| 8273 | -.elementor-app-backdrop--visible { | |
| 8274 | - opacity: 1; | |
| 8275 | -} | |
| 8276 | - | |
| 8277 | -.elementor-app-iframe { | |
| 8278 | - position: fixed; | |
| 8279 | - top: 30px; | |
| 8280 | - left: 40px; | |
| 8281 | - width: calc(100% - 80px); | |
| 8282 | - height: calc(100% - 60px); | |
| 8283 | - z-index: 100000; | |
| 8284 | - border-radius: 12px; | |
| 8285 | - box-shadow: 0 16px 64px rgba(0, 0, 0, 0.3); | |
| 8286 | - background-color: transparent; | |
| 8287 | - opacity: 0; | |
| 8288 | - transition: opacity 0.25s ease; | |
| 8289 | -} | |
| 8290 | -.elementor-app-iframe--visible { | |
| 8291 | - opacity: 1; | |
| 8292 | -} | |
| 8293 | - | |
| 8294 | 7566 | [class^=eicon-flex], [class*=" eicon-flex"] { |
| 8295 | 7567 | transition: 0.3s all; |
| 7568 | + --is-ltr: 0; | |
| 7569 | + --is-rtl: 1; | |
| 7570 | + --rotation-direction: calc(var(--is-ltr) - var(--is-rtl)); | |
| 8296 | 7571 | } |
| 8297 | 7572 | [class^=eicon-flex].eicon-inline, [class*=" eicon-flex"].eicon-inline { |
| 8298 | 7573 | max-height: 1em; |
| 8299 | 7574 | max-width: 1em; |
| 8300 | 7575 | } |
| 8301 | -[class^=eicon-flex], [class*=" eicon-flex"] { | |
| 8302 | - --is-ltr: 0; | |
| 8303 | - --is-rtl: 1; | |
| 8304 | -} | |
| 8305 | 7576 | [class^=eicon-flex]:is(.eicon-justify-start-h, .eicon-justify-end-h), [class*=" eicon-flex"]:is(.eicon-justify-start-h, .eicon-justify-end-h) { |
| 8306 | 7577 | --rotation-direction: calc(var(--is-ltr) + var(--is-rtl)); |
| 8307 | 7578 | } |
| 8308 | -[class^=eicon-flex], [class*=" eicon-flex"] { | |
| 8309 | - --rotation-direction: calc(var(--is-ltr) - var(--is-rtl)); | |
| 8310 | -} | |
| 8311 | 7579 | :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) { |
| 8312 | 7580 | transform: rotate(calc(var(--rotation-direction) * 90deg)); |
| 8313 | 7581 | } |
| 8314 | 7582 | :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) { |
| @@ -8321,16 +7589,6 @@ | ||
| 8321 | 7589 | transform: rotate(calc(var(--is-rtl) * 180deg)); |
| 8322 | 7590 | } |
| 8323 | 7591 | .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) { |
| 8324 | 7592 | transform: rotate(calc(var(--is-ltr) * 180deg)); |
| 8325 | -} | |
| 8326 | - | |
| 8327 | -.elementor-editor-active .embed-media-settings .setting.caption { | |
| 8328 | - display: none; | |
| 8329 | -} | |
| 8330 | -.elementor-editor-active .embed-media-settings .setting.align { | |
| 8331 | - display: none; | |
| 8332 | -} | |
| 8333 | -.elementor-editor-active .embed-media-settings fieldset.setting-group { | |
| 8334 | - display: none; | |
| 8335 | 7593 | } |
| 8336 | 7594 | /*# sourceMappingURL=editor-rtl.css.map */ |