| @@ -1,53 +1,79 @@ | ||
| 1 | +/*! elementor - v3.20.0 - 26-02-2024 */ | |
| 1 | 2 | :root { |
| 2 | - --direction-multiplier: 1; | |
| 3 | + --e-a-color-white: #ffffff; | |
| 4 | + --e-a-color-black: #000000; | |
| 5 | + --e-a-color-logo: #ffffff; | |
| 6 | + --e-a-color-primary: #F3BAFD; | |
| 7 | + --e-a-color-primary-bold: #D004D4; | |
| 8 | + --e-a-color-secondary: #515962; | |
| 9 | + --e-a-color-success: #0A875A; | |
| 10 | + --e-a-color-danger: #DC2626; | |
| 11 | + --e-a-color-info: #2563EB; | |
| 12 | + --e-a-color-warning: #F59E0B; | |
| 13 | + --e-a-color-accent: #93003f; | |
| 14 | + --e-a-color-global: #1DDDBF; | |
| 15 | + --e-a-bg-default: #ffffff; | |
| 16 | + --e-a-bg-invert: #0C0D0E; | |
| 17 | + --e-a-bg-hover: #F1F2F3; | |
| 18 | + --e-a-bg-active: #E6E8EA; | |
| 19 | + --e-a-bg-active-bold: #D5D8DC; | |
| 20 | + --e-a-bg-loading: #F9FAFA; | |
| 21 | + --e-a-bg-logo: #000000; | |
| 22 | + --e-a-bg-primary: #FAE8FF; | |
| 23 | + --e-a-bg-secondary: #515962; | |
| 24 | + --e-a-bg-success: #F2FDF5; | |
| 25 | + --e-a-bg-info: #F0F7FF; | |
| 26 | + --e-a-bg-danger: #FEF1F4; | |
| 27 | + --e-a-bg-warning: #FFFBEB; | |
| 28 | + --e-a-color-txt: #515962; | |
| 29 | + --e-a-color-txt-muted: #818A96; | |
| 30 | + --e-a-color-txt-disabled: #BABFC5; | |
| 31 | + --e-a-color-txt-invert: #ffffff; | |
| 32 | + --e-a-color-txt-accent: #0C0D0E; | |
| 33 | + --e-a-color-txt-hover: #3f444b; | |
| 34 | + --e-a-color-txt-active: #0C0D0E; | |
| 35 | + --e-a-border-color: #E6E8EA; | |
| 36 | + --e-a-border-color-bold: #D5D8DC; | |
| 37 | + --e-a-border-color-focus: #BABFC5; | |
| 38 | + --e-a-border-color-accent: #0C0D0E; | |
| 39 | + --e-a-border: 1px solid var(--e-a-border-color); | |
| 40 | + --e-a-border-bold: 1px solid var(--e-a-border-color-bold); | |
| 41 | + --e-a-border-radius: 3px; | |
| 42 | + --e-a-btn-color: #0C0D0E; | |
| 43 | + --e-a-btn-color-invert: var(--e-a-color-txt-invert); | |
| 44 | + --e-a-btn-color-disabled: var(--e-a-color-txt-disabled); | |
| 45 | + --e-a-btn-bg: #515962; | |
| 46 | + --e-a-btn-bg-hover: #3a4046; | |
| 47 | + --e-a-btn-bg-active: #23262a; | |
| 48 | + --e-a-btn-bg-disabled: #D5D8DC; | |
| 49 | + --e-a-btn-bg-primary: #F3BAFD; | |
| 50 | + --e-a-btn-bg-primary-hover: #F5D0FE; | |
| 51 | + --e-a-btn-bg-primary-active:#F0ABFC; | |
| 52 | + --e-a-btn-bg-accent: #93003f; | |
| 53 | + --e-a-btn-bg-accent-hover: #8F1A4C; | |
| 54 | + --e-a-btn-bg-accent-active: #A93365; | |
| 55 | + --e-a-btn-bg-info: #2563EB; | |
| 56 | + --e-a-btn-bg-info-hover: #134cca; | |
| 57 | + --e-a-btn-bg-info-active: #0e3b9c; | |
| 58 | + --e-a-btn-bg-success: #0A875A; | |
| 59 | + --e-a-btn-bg-success-hover: #06583a; | |
| 60 | + --e-a-btn-bg-success-active:#03281b; | |
| 61 | + --e-a-btn-bg-warning: #F59E0B; | |
| 62 | + --e-a-btn-bg-warning-hover: #c57f08; | |
| 63 | + --e-a-btn-bg-warning-active:#945f06; | |
| 64 | + --e-a-btn-bg-danger: #DC2626; | |
| 65 | + --e-a-btn-bg-danger-hover: #b21d1d; | |
| 66 | + --e-a-btn-bg-danger-active: #861616; | |
| 67 | + --e-a-dark-bg: #0C0D0E; | |
| 68 | + --e-a-dark-color-txt: #9DA5AE; | |
| 69 | + --e-a-dark-color-txt-hover: #D5D8DC; | |
| 70 | + --e-a-font-family: Roboto, Arial, Helvetica, sans-serif; | |
| 71 | + --e-a-transition-hover: all .3s; | |
| 72 | + --e-a-popover-shadow: 0 2px 15px rgba(0, 0, 0, 0.3); | |
| 73 | + --e-a-dropdown-shadow: 0 0 3px rgba(0, 0, 0, 0.2); | |
| 3 | 74 | } |
| 4 | 75 | |
| 5 | -html[dir=rtl], | |
| 6 | -body.rtl { | |
| 7 | - --direction-multiplier: -1; | |
| 8 | -} | |
| 9 | - | |
| 10 | -.elementor-hidden { | |
| 11 | - display: none; | |
| 12 | -} | |
| 13 | - | |
| 14 | -.elementor-visibility-hidden { | |
| 15 | - visibility: hidden; | |
| 16 | -} | |
| 17 | - | |
| 18 | -.elementor-screen-only, | |
| 19 | -.screen-reader-text, | |
| 20 | -.screen-reader-text span, | |
| 21 | -.ui-helper-hidden-accessible { | |
| 22 | - position: absolute; | |
| 23 | - top: -10000em; | |
| 24 | - width: 1px; | |
| 25 | - height: 1px; | |
| 26 | - margin: -1px; | |
| 27 | - padding: 0; | |
| 28 | - overflow: hidden; | |
| 29 | - clip: rect(0, 0, 0, 0); | |
| 30 | - border: 0; | |
| 31 | -} | |
| 32 | - | |
| 33 | -.elementor-clearfix:after { | |
| 34 | - content: ""; | |
| 35 | - display: block; | |
| 36 | - clear: both; | |
| 37 | - width: 0; | |
| 38 | - height: 0; | |
| 39 | -} | |
| 40 | - | |
| 41 | -.e-logo-wrapper { | |
| 42 | - display: inline-block; | |
| 43 | - line-height: 1; | |
| 44 | -} | |
| 45 | -.e-logo-wrapper i { | |
| 46 | - color: var(--e-a-color-circle-logo); | |
| 47 | - font-size: 2.5em; | |
| 48 | -} | |
| 49 | - | |
| 50 | 76 | .dialog-widget-content { |
| 51 | 77 | background-color: var(--e-a-bg-default); |
| 52 | 78 | position: absolute; |
| 53 | 79 | border-radius: 3px; |
| @@ -63,9 +89,9 @@ | ||
| 63 | 89 | .dialog-close-button { |
| 64 | 90 | cursor: pointer; |
| 65 | 91 | position: absolute; |
| 66 | 92 | margin-block-start: 15px; |
| 67 | - inset-inline-end: 15px; | |
| 93 | + left: 15px; | |
| 68 | 94 | color: var(--e-a-color-txt); |
| 69 | 95 | font-size: 15px; |
| 70 | 96 | line-height: 1; |
| 71 | 97 | transition: var(--e-a-transition-hover); |
| @@ -291,13 +317,8 @@ | ||
| 291 | 317 | .dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-danger, |
| 292 | 318 | .dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-danger { |
| 293 | 319 | background-color: var(--e-a-btn-bg-danger); |
| 294 | 320 | } |
| 295 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-danger.color-white, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-danger.color-white, | |
| 296 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-danger.color-white, | |
| 297 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-danger.color-white { | |
| 298 | - color: var(--e-a-color-white); | |
| 299 | -} | |
| 300 | 321 | .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-danger:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-danger:focus, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-danger:hover, .dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-danger:focus, |
| 301 | 322 | .dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-danger:hover, |
| 302 | 323 | .dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-danger:focus, |
| 303 | 324 | .dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-danger:hover, |
| @@ -313,20 +334,67 @@ | ||
| 313 | 334 | .dialog-type-alert .dialog-buttons-wrapper .dialog-button:focus, |
| 314 | 335 | .dialog-type-alert .dialog-buttons-wrapper .dialog-button:visited { |
| 315 | 336 | color: initial; |
| 316 | 337 | } |
| 317 | -.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, | |
| 318 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button[disabled]:hover, | |
| 319 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button[disabled]:focus, | |
| 320 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button[disabled]:visited { | |
| 321 | - background-color: var(--e-a-btn-bg-disabled); | |
| 338 | +.flatpickr-calendar { | |
| 339 | + width: 280px; | |
| 322 | 340 | } |
| 323 | -.dialog-type-confirm .dialog-buttons-wrapper .dialog-button[disabled], | |
| 324 | -.dialog-type-alert .dialog-buttons-wrapper .dialog-button[disabled] { | |
| 325 | - background-color: var(--e-a-btn-bg-disabled); | |
| 326 | - cursor: not-allowed; | |
| 341 | +.flatpickr-calendar .flatpickr-current-month span.cur-month { | |
| 342 | + font-weight: 300; | |
| 327 | 343 | } |
| 344 | +.flatpickr-calendar .dayContainer { | |
| 345 | + width: 280px; | |
| 346 | + min-width: 280px; | |
| 347 | + max-width: 280px; | |
| 348 | +} | |
| 349 | +.flatpickr-calendar .flatpickr-days { | |
| 350 | + width: 280px; | |
| 351 | +} | |
| 352 | +.flatpickr-calendar .flatpickr-day { | |
| 353 | + max-width: 37px; | |
| 354 | + height: 37px; | |
| 355 | + line-height: 37px; | |
| 356 | +} | |
| 328 | 357 | |
| 358 | +.elementor-hidden { | |
| 359 | + display: none; | |
| 360 | +} | |
| 361 | + | |
| 362 | +.elementor-screen-only, | |
| 363 | +.screen-reader-text, | |
| 364 | +.screen-reader-text span, | |
| 365 | +.ui-helper-hidden-accessible { | |
| 366 | + position: absolute; | |
| 367 | + top: -10000em; | |
| 368 | + width: 1px; | |
| 369 | + height: 1px; | |
| 370 | + margin: -1px; | |
| 371 | + padding: 0; | |
| 372 | + overflow: hidden; | |
| 373 | + clip: rect(0, 0, 0, 0); | |
| 374 | + border: 0; | |
| 375 | +} | |
| 376 | + | |
| 377 | +.elementor-clearfix:after { | |
| 378 | + content: ""; | |
| 379 | + display: block; | |
| 380 | + clear: both; | |
| 381 | + width: 0; | |
| 382 | + height: 0; | |
| 383 | +} | |
| 384 | + | |
| 385 | +.e-logo-wrapper { | |
| 386 | + background: var(--e-a-bg-logo); | |
| 387 | + display: inline-block; | |
| 388 | + padding: 0.75em; | |
| 389 | + border-radius: 50%; | |
| 390 | + line-height: 1; | |
| 391 | +} | |
| 392 | +.e-logo-wrapper i { | |
| 393 | + color: var(--e-a-color-logo); | |
| 394 | + font-size: 1em; | |
| 395 | +} | |
| 396 | + | |
| 329 | 397 | #elementor-change-exit-preference-dialog .dialog-message a { |
| 330 | 398 | cursor: pointer; |
| 331 | 399 | } |
| 332 | 400 | #elementor-change-exit-preference-dialog .dialog-message > div { |
| @@ -426,9 +494,8 @@ | ||
| 426 | 494 | } |
| 427 | 495 | .elementor-templates-modal__header__items-area { |
| 428 | 496 | display: flex; |
| 429 | 497 | flex-direction: row-reverse; |
| 430 | - align-items: center; | |
| 431 | 498 | } |
| 432 | 499 | .elementor-templates-modal__header__item { |
| 433 | 500 | position: relative; |
| 434 | 501 | display: flex; |
| @@ -443,17 +510,8 @@ | ||
| 443 | 510 | } |
| 444 | 511 | .elementor-templates-modal__header__item > i:hover { |
| 445 | 512 | color: var(--e-a-color-txt-hover); |
| 446 | 513 | } |
| 447 | -.elementor-templates-modal__header__close:is(button) { | |
| 448 | - background: transparent; | |
| 449 | - margin: 0; | |
| 450 | - font-size: inherit; | |
| 451 | - font-family: inherit; | |
| 452 | - color: inherit; | |
| 453 | - border: none; | |
| 454 | - cursor: pointer; | |
| 455 | -} | |
| 456 | 514 | .elementor-templates-modal__header__close--normal { |
| 457 | 515 | width: 47px; |
| 458 | 516 | border-inline-start: var(--e-a-border); |
| 459 | 517 | } |
| @@ -507,9 +565,9 @@ | ||
| 507 | 565 | display: flex; |
| 508 | 566 | justify-content: flex-end; |
| 509 | 567 | } |
| 510 | 568 | #elementor-toast .dialog-buttons-wrapper:not(:empty) { |
| 511 | - margin-block-start: 15px; | |
| 569 | + margin-top: 15px; | |
| 512 | 570 | } |
| 513 | 571 | #elementor-toast .dialog-button { |
| 514 | 572 | font-size: 12px; |
| 515 | 573 | font-weight: 500; |
| @@ -514,27 +572,20 @@ | ||
| 514 | 572 | font-size: 12px; |
| 515 | 573 | font-weight: 500; |
| 516 | 574 | line-height: 1.2; |
| 517 | 575 | padding: 8px 16px; |
| 518 | - margin-inline-end: 10px; | |
| 576 | + margin-left: 10px; | |
| 519 | 577 | color: var(--e-a-dark-color-txt); |
| 520 | 578 | border-radius: var(--e-a-border-radius); |
| 521 | 579 | transition: var(--e-a-transition-hover); |
| 522 | 580 | cursor: pointer; |
| 523 | - background: none; | |
| 524 | - border: none; | |
| 525 | - font-family: inherit; | |
| 526 | 581 | } |
| 527 | 582 | #elementor-toast .dialog-button:hover { |
| 528 | 583 | background: var(--e-a-bg-hover); |
| 529 | 584 | color: var(--e-a-color-txt-hover); |
| 530 | 585 | } |
| 531 | -#elementor-toast .dialog-button:focus-visible { | |
| 532 | - outline: 2px solid var(--e-a-border-color-focus, #4F46E5); | |
| 533 | - outline-offset: 2px; | |
| 534 | -} | |
| 535 | 586 | #elementor-toast .dialog-button:last-child { |
| 536 | - margin-inline-end: 0; | |
| 587 | + margin-left: 0; | |
| 537 | 588 | } |
| 538 | 589 | |
| 539 | 590 | /* Will select next element after last '.elementor-general-section' */ |
| 540 | 591 | #wpadminbar #wp-admin-bar-elementor_edit_page .elementor-general-section + .elementor-second-section { |
| @@ -542,14 +593,17 @@ | ||
| 542 | 593 | margin-block-start: 6px; |
| 543 | 594 | } |
| 544 | 595 | |
| 545 | 596 | .e-logo-wrapper { |
| 597 | + background: var(--e-a-bg-logo); | |
| 546 | 598 | display: inline-block; |
| 599 | + padding: 0.75em; | |
| 600 | + border-radius: 50%; | |
| 547 | 601 | line-height: 1; |
| 548 | 602 | } |
| 549 | 603 | .e-logo-wrapper i { |
| 550 | - color: var(--e-a-color-circle-logo); | |
| 551 | - font-size: 2.5em; | |
| 604 | + color: var(--e-a-color-logo); | |
| 605 | + font-size: 1em; | |
| 552 | 606 | } |
| 553 | 607 | |
| 554 | 608 | #elementor-finder__modal { |
| 555 | 609 | background: none; |
| @@ -567,9 +621,9 @@ | ||
| 567 | 621 | #elementor-finder__modal .dialog-message { |
| 568 | 622 | height: initial; |
| 569 | 623 | min-height: 0; |
| 570 | 624 | padding: 0; |
| 571 | - text-align: start; | |
| 625 | + text-align: right; | |
| 572 | 626 | } |
| 573 | 627 | #elementor-finder__search { |
| 574 | 628 | padding: 15px; |
| 575 | 629 | display: flex; |
| @@ -621,10 +675,10 @@ | ||
| 621 | 675 | } |
| 622 | 676 | .elementor-finder__results__category .eicon-loading { |
| 623 | 677 | display: none; |
| 624 | 678 | position: absolute; |
| 625 | - inset-block-start: 30px; | |
| 626 | - inset-inline-end: 10px; | |
| 679 | + left: 10px; | |
| 680 | + top: 30px; | |
| 627 | 681 | color: var(--e-a-color-info); |
| 628 | 682 | font-size: 14px; |
| 629 | 683 | } |
| 630 | 684 | .elementor-finder__results__item { |