@deviceinsight/ng-ui-components 7.14.0 → 7.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/style.css CHANGED
@@ -1081,6 +1081,18 @@ a .di.label:active {background-color:rgba(0,0,0,.1);}
1081
1081
  cursor: -webkit-grabbing;
1082
1082
  cursor: grabbing;
1083
1083
  }
1084
+ .rc-slider-handle-disabled {
1085
+ background-color: #fff;
1086
+ border-color: #ccc;
1087
+ box-shadow: none;
1088
+ cursor: not-allowed;
1089
+ }
1090
+ .rc-slider-handle-disabled:hover,
1091
+ .rc-slider-handle-disabled:active {
1092
+ border-color: #ccc;
1093
+ box-shadow: none;
1094
+ cursor: not-allowed;
1095
+ }
1084
1096
  .rc-slider-mark {
1085
1097
  position: absolute;
1086
1098
  top: 18px;
@@ -1276,56 +1288,860 @@ a .di.label:active {background-color:rgba(0,0,0,.1);}
1276
1288
  border-width: 4px 4px 0;
1277
1289
  border-top-color: #6c6c6c;
1278
1290
  }
1291
+ :root {
1292
+ --toastify-color-light: #fff;
1293
+ --toastify-color-dark: #121212;
1294
+ --toastify-color-info: #3498db;
1295
+ --toastify-color-success: #07bc0c;
1296
+ --toastify-color-warning: #f1c40f;
1297
+ --toastify-color-error: hsl(6, 78%, 57%);
1298
+ --toastify-color-transparent: rgba(255, 255, 255, 0.7);
1299
+
1300
+ --toastify-icon-color-info: var(--toastify-color-info);
1301
+ --toastify-icon-color-success: var(--toastify-color-success);
1302
+ --toastify-icon-color-warning: var(--toastify-color-warning);
1303
+ --toastify-icon-color-error: var(--toastify-color-error);
1304
+
1305
+ --toastify-container-width: fit-content;
1306
+ --toastify-toast-width: 320px;
1307
+ --toastify-toast-offset: 16px;
1308
+ --toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
1309
+ --toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
1310
+ --toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
1311
+ --toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
1312
+ --toastify-toast-background: #fff;
1313
+ --toastify-toast-padding: 14px;
1314
+ --toastify-toast-min-height: 64px;
1315
+ --toastify-toast-max-height: 800px;
1316
+ --toastify-toast-bd-radius: 6px;
1317
+ --toastify-toast-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
1318
+ --toastify-font-family: sans-serif;
1319
+ --toastify-z-index: 9999;
1320
+ --toastify-text-color-light: #757575;
1321
+ --toastify-text-color-dark: #fff;
1322
+
1323
+ /* Used only for colored theme */
1324
+ --toastify-text-color-info: #fff;
1325
+ --toastify-text-color-success: #fff;
1326
+ --toastify-text-color-warning: #fff;
1327
+ --toastify-text-color-error: #fff;
1328
+
1329
+ --toastify-spinner-color: #616161;
1330
+ --toastify-spinner-color-empty-area: #e0e0e0;
1331
+ --toastify-color-progress-light: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
1332
+ --toastify-color-progress-dark: #bb86fc;
1333
+ --toastify-color-progress-info: var(--toastify-color-info);
1334
+ --toastify-color-progress-success: var(--toastify-color-success);
1335
+ --toastify-color-progress-warning: var(--toastify-color-warning);
1336
+ --toastify-color-progress-error: var(--toastify-color-error);
1337
+ /* used to control the opacity of the progress trail */
1338
+ --toastify-color-progress-bgo: 0.2;
1339
+ }
1340
+
1341
+ .Toastify__toast-container {
1342
+ z-index: var(--toastify-z-index);
1343
+ -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
1344
+ position: fixed;
1345
+ width: var(--toastify-container-width);
1346
+ box-sizing: border-box;
1347
+ color: #fff;
1348
+ display: flex;
1349
+ flex-direction: column;
1350
+ }
1351
+
1352
+ .Toastify__toast-container--top-left {
1353
+ top: var(--toastify-toast-top);
1354
+ left: var(--toastify-toast-left);
1355
+ }
1356
+ .Toastify__toast-container--top-center {
1357
+ top: var(--toastify-toast-top);
1358
+ left: 50%;
1359
+ transform: translateX(-50%);
1360
+ align-items: center;
1361
+ }
1362
+ .Toastify__toast-container--top-right {
1363
+ top: var(--toastify-toast-top);
1364
+ right: var(--toastify-toast-right);
1365
+ align-items: end;
1366
+ }
1367
+ .Toastify__toast-container--bottom-left {
1368
+ bottom: var(--toastify-toast-bottom);
1369
+ left: var(--toastify-toast-left);
1370
+ }
1371
+ .Toastify__toast-container--bottom-center {
1372
+ bottom: var(--toastify-toast-bottom);
1373
+ left: 50%;
1374
+ transform: translateX(-50%);
1375
+ align-items: center;
1376
+ }
1377
+ .Toastify__toast-container--bottom-right {
1378
+ bottom: var(--toastify-toast-bottom);
1379
+ right: var(--toastify-toast-right);
1380
+ align-items: end;
1381
+ }
1382
+
1383
+ .Toastify__toast {
1384
+ --y: 0px;
1385
+ position: relative;
1386
+ touch-action: none;
1387
+ width: var(--toastify-toast-width);
1388
+ min-height: var(--toastify-toast-min-height);
1389
+ box-sizing: border-box;
1390
+ margin-bottom: 1rem;
1391
+ padding: var(--toastify-toast-padding);
1392
+ border-radius: var(--toastify-toast-bd-radius);
1393
+ box-shadow: var(--toastify-toast-shadow);
1394
+ max-height: var(--toastify-toast-max-height);
1395
+ font-family: var(--toastify-font-family);
1396
+ /* webkit only issue #791 */
1397
+ z-index: 0;
1398
+ /* inner swag */
1399
+ display: flex;
1400
+ flex: 1 auto;
1401
+ align-items: center;
1402
+ word-break: break-word;
1403
+ }
1404
+
1405
+ @media only screen and (max-width: 480px) {
1406
+ .Toastify__toast-container {
1407
+ width: 100vw;
1408
+ left: env(safe-area-inset-left);
1409
+ margin: 0;
1410
+ }
1411
+ .Toastify__toast-container--top-left,
1412
+ .Toastify__toast-container--top-center,
1413
+ .Toastify__toast-container--top-right {
1414
+ top: env(safe-area-inset-top);
1415
+ transform: translateX(0);
1416
+ }
1417
+ .Toastify__toast-container--bottom-left,
1418
+ .Toastify__toast-container--bottom-center,
1419
+ .Toastify__toast-container--bottom-right {
1420
+ bottom: env(safe-area-inset-bottom);
1421
+ transform: translateX(0);
1422
+ }
1423
+ .Toastify__toast-container--rtl {
1424
+ right: env(safe-area-inset-right);
1425
+ left: initial;
1426
+ }
1427
+ .Toastify__toast {
1428
+ --toastify-toast-width: 100%;
1429
+ margin-bottom: 0;
1430
+ border-radius: 0;
1431
+ }
1432
+ }
1433
+
1434
+ .Toastify__toast-container[data-stacked='true'] {
1435
+ width: var(--toastify-toast-width);
1436
+ }
1437
+
1438
+ @media only screen and (max-width: 480px) {
1439
+ .Toastify__toast-container[data-stacked='true'] {
1440
+ width: 100vw;
1441
+ }
1442
+ }
1443
+
1444
+ .Toastify__toast--stacked {
1445
+ position: absolute;
1446
+ width: 100%;
1447
+ transform: translate3d(0, var(--y), 0) scale(var(--s));
1448
+ transition: transform 0.3s;
1449
+ }
1450
+
1451
+ .Toastify__toast--stacked[data-collapsed] .Toastify__toast-body,
1452
+ .Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
1453
+ transition: opacity 0.1s;
1454
+ }
1455
+
1456
+ .Toastify__toast--stacked[data-collapsed='false'] {
1457
+ overflow: visible;
1458
+ }
1459
+
1460
+ .Toastify__toast--stacked[data-collapsed='true']:not(:last-child) > * {
1461
+ opacity: 0;
1462
+ }
1463
+
1464
+ .Toastify__toast--stacked:after {
1465
+ content: '';
1466
+ position: absolute;
1467
+ left: 0;
1468
+ right: 0;
1469
+ height: calc(var(--g) * 1px);
1470
+ bottom: 100%;
1471
+ }
1472
+
1473
+ .Toastify__toast--stacked[data-pos='top'] {
1474
+ top: 0;
1475
+ }
1476
+
1477
+ .Toastify__toast--stacked[data-pos='bot'] {
1478
+ bottom: 0;
1479
+ }
1480
+
1481
+ .Toastify__toast--stacked[data-pos='bot'].Toastify__toast--stacked:before {
1482
+ transform-origin: top;
1483
+ }
1484
+
1485
+ .Toastify__toast--stacked[data-pos='top'].Toastify__toast--stacked:before {
1486
+ transform-origin: bottom;
1487
+ }
1488
+
1489
+ .Toastify__toast--stacked:before {
1490
+ content: '';
1491
+ position: absolute;
1492
+ left: 0;
1493
+ right: 0;
1494
+ bottom: 0;
1495
+ height: 100%;
1496
+ transform: scaleY(3);
1497
+ z-index: -1;
1498
+ }
1499
+
1500
+ .Toastify__toast--rtl {
1501
+ direction: rtl;
1502
+ }
1503
+
1504
+ .Toastify__toast--close-on-click {
1505
+ cursor: pointer;
1506
+ }
1507
+
1508
+ .Toastify__toast-icon {
1509
+ margin-inline-end: 10px;
1510
+ width: 22px;
1511
+ flex-shrink: 0;
1512
+ display: flex;
1513
+ }
1514
+
1515
+ .Toastify--animate {
1516
+ animation-fill-mode: both;
1517
+ animation-duration: 0.5s;
1518
+ }
1519
+
1520
+ .Toastify--animate-icon {
1521
+ animation-fill-mode: both;
1522
+ animation-duration: 0.3s;
1523
+ }
1524
+
1525
+ .Toastify__toast-theme--dark {
1526
+ background: var(--toastify-color-dark);
1527
+ color: var(--toastify-text-color-dark);
1528
+ }
1529
+
1530
+ .Toastify__toast-theme--light {
1531
+ background: var(--toastify-color-light);
1532
+ color: var(--toastify-text-color-light);
1533
+ }
1534
+
1535
+ .Toastify__toast-theme--colored.Toastify__toast--default {
1536
+ background: var(--toastify-color-light);
1537
+ color: var(--toastify-text-color-light);
1538
+ }
1539
+
1540
+ .Toastify__toast-theme--colored.Toastify__toast--info {
1541
+ color: var(--toastify-text-color-info);
1542
+ background: var(--toastify-color-info);
1543
+ }
1544
+
1545
+ .Toastify__toast-theme--colored.Toastify__toast--success {
1546
+ color: var(--toastify-text-color-success);
1547
+ background: var(--toastify-color-success);
1548
+ }
1549
+
1550
+ .Toastify__toast-theme--colored.Toastify__toast--warning {
1551
+ color: var(--toastify-text-color-warning);
1552
+ background: var(--toastify-color-warning);
1553
+ }
1554
+
1555
+ .Toastify__toast-theme--colored.Toastify__toast--error {
1556
+ color: var(--toastify-text-color-error);
1557
+ background: var(--toastify-color-error);
1558
+ }
1559
+
1560
+ .Toastify__progress-bar-theme--light {
1561
+ background: var(--toastify-color-progress-light);
1562
+ }
1563
+
1564
+ .Toastify__progress-bar-theme--dark {
1565
+ background: var(--toastify-color-progress-dark);
1566
+ }
1567
+
1568
+ .Toastify__progress-bar--info {
1569
+ background: var(--toastify-color-progress-info);
1570
+ }
1571
+
1572
+ .Toastify__progress-bar--success {
1573
+ background: var(--toastify-color-progress-success);
1574
+ }
1575
+
1576
+ .Toastify__progress-bar--warning {
1577
+ background: var(--toastify-color-progress-warning);
1578
+ }
1579
+
1580
+ .Toastify__progress-bar--error {
1581
+ background: var(--toastify-color-progress-error);
1582
+ }
1583
+
1584
+ .Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
1585
+ .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
1586
+ .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning,
1587
+ .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
1588
+ background: var(--toastify-color-transparent);
1589
+ }
1590
+
1591
+ .Toastify__close-button {
1592
+ color: #fff;
1593
+ position: absolute;
1594
+ top: 6px;
1595
+ right: 6px;
1596
+ background: transparent;
1597
+ outline: none;
1598
+ border: none;
1599
+ padding: 0;
1600
+ cursor: pointer;
1601
+ opacity: 0.7;
1602
+ transition: 0.3s ease;
1603
+ z-index: 1;
1604
+ }
1605
+
1606
+ .Toastify__toast--rtl .Toastify__close-button {
1607
+ left: 6px;
1608
+ right: unset;
1609
+ }
1610
+
1611
+ .Toastify__close-button--light {
1612
+ color: #000;
1613
+ opacity: 0.3;
1614
+ }
1615
+
1616
+ .Toastify__close-button > svg {
1617
+ fill: currentColor;
1618
+ height: 16px;
1619
+ width: 14px;
1620
+ }
1621
+
1622
+ .Toastify__close-button:hover,
1623
+ .Toastify__close-button:focus {
1624
+ opacity: 1;
1625
+ }
1626
+
1627
+ @keyframes Toastify__trackProgress {
1628
+ 0% {
1629
+ transform: scaleX(1);
1630
+ }
1631
+ 100% {
1632
+ transform: scaleX(0);
1633
+ }
1634
+ }
1635
+
1636
+ .Toastify__progress-bar {
1637
+ position: absolute;
1638
+ bottom: 0;
1639
+ left: 0;
1640
+ width: 100%;
1641
+ height: 100%;
1642
+ z-index: 1;
1643
+ opacity: 0.7;
1644
+ transform-origin: left;
1645
+ }
1646
+
1647
+ .Toastify__progress-bar--animated {
1648
+ animation: Toastify__trackProgress linear 1 forwards;
1649
+ }
1650
+
1651
+ .Toastify__progress-bar--controlled {
1652
+ transition: transform 0.2s;
1653
+ }
1654
+
1655
+ .Toastify__progress-bar--rtl {
1656
+ right: 0;
1657
+ left: initial;
1658
+ transform-origin: right;
1659
+ border-bottom-left-radius: initial;
1660
+ }
1661
+
1662
+ .Toastify__progress-bar--wrp {
1663
+ position: absolute;
1664
+ overflow: hidden;
1665
+ bottom: 0;
1666
+ left: 0;
1667
+ width: 100%;
1668
+ height: 5px;
1669
+ border-bottom-left-radius: var(--toastify-toast-bd-radius);
1670
+ border-bottom-right-radius: var(--toastify-toast-bd-radius);
1671
+ }
1672
+
1673
+ .Toastify__progress-bar--wrp[data-hidden='true'] {
1674
+ opacity: 0;
1675
+ }
1676
+
1677
+ .Toastify__progress-bar--bg {
1678
+ opacity: var(--toastify-color-progress-bgo);
1679
+ width: 100%;
1680
+ height: 100%;
1681
+ }
1682
+
1683
+ .Toastify__spinner {
1684
+ width: 20px;
1685
+ height: 20px;
1686
+ box-sizing: border-box;
1687
+ border: 2px solid;
1688
+ border-radius: 100%;
1689
+ border-color: var(--toastify-spinner-color-empty-area);
1690
+ border-right-color: var(--toastify-spinner-color);
1691
+ animation: Toastify__spin 0.65s linear infinite;
1692
+ }
1693
+
1694
+ @keyframes Toastify__bounceInRight {
1695
+ from,
1696
+ 60%,
1697
+ 75%,
1698
+ 90%,
1699
+ to {
1700
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1701
+ }
1702
+ from {
1703
+ opacity: 0;
1704
+ transform: translate3d(3000px, 0, 0);
1705
+ }
1706
+ 60% {
1707
+ opacity: 1;
1708
+ transform: translate3d(-25px, 0, 0);
1709
+ }
1710
+ 75% {
1711
+ transform: translate3d(10px, 0, 0);
1712
+ }
1713
+ 90% {
1714
+ transform: translate3d(-5px, 0, 0);
1715
+ }
1716
+ to {
1717
+ transform: none;
1718
+ }
1719
+ }
1720
+
1721
+ @keyframes Toastify__bounceOutRight {
1722
+ 20% {
1723
+ opacity: 1;
1724
+ transform: translate3d(-20px, var(--y), 0);
1725
+ }
1726
+ to {
1727
+ opacity: 0;
1728
+ transform: translate3d(2000px, var(--y), 0);
1729
+ }
1730
+ }
1731
+
1732
+ @keyframes Toastify__bounceInLeft {
1733
+ from,
1734
+ 60%,
1735
+ 75%,
1736
+ 90%,
1737
+ to {
1738
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1739
+ }
1740
+ 0% {
1741
+ opacity: 0;
1742
+ transform: translate3d(-3000px, 0, 0);
1743
+ }
1744
+ 60% {
1745
+ opacity: 1;
1746
+ transform: translate3d(25px, 0, 0);
1747
+ }
1748
+ 75% {
1749
+ transform: translate3d(-10px, 0, 0);
1750
+ }
1751
+ 90% {
1752
+ transform: translate3d(5px, 0, 0);
1753
+ }
1754
+ to {
1755
+ transform: none;
1756
+ }
1757
+ }
1758
+
1759
+ @keyframes Toastify__bounceOutLeft {
1760
+ 20% {
1761
+ opacity: 1;
1762
+ transform: translate3d(20px, var(--y), 0);
1763
+ }
1764
+ to {
1765
+ opacity: 0;
1766
+ transform: translate3d(-2000px, var(--y), 0);
1767
+ }
1768
+ }
1769
+
1770
+ @keyframes Toastify__bounceInUp {
1771
+ from,
1772
+ 60%,
1773
+ 75%,
1774
+ 90%,
1775
+ to {
1776
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1777
+ }
1778
+ from {
1779
+ opacity: 0;
1780
+ transform: translate3d(0, 3000px, 0);
1781
+ }
1782
+ 60% {
1783
+ opacity: 1;
1784
+ transform: translate3d(0, -20px, 0);
1785
+ }
1786
+ 75% {
1787
+ transform: translate3d(0, 10px, 0);
1788
+ }
1789
+ 90% {
1790
+ transform: translate3d(0, -5px, 0);
1791
+ }
1792
+ to {
1793
+ transform: translate3d(0, 0, 0);
1794
+ }
1795
+ }
1796
+
1797
+ @keyframes Toastify__bounceOutUp {
1798
+ 20% {
1799
+ transform: translate3d(0, calc(var(--y) - 10px), 0);
1800
+ }
1801
+ 40%,
1802
+ 45% {
1803
+ opacity: 1;
1804
+ transform: translate3d(0, calc(var(--y) + 20px), 0);
1805
+ }
1806
+ to {
1807
+ opacity: 0;
1808
+ transform: translate3d(0, -2000px, 0);
1809
+ }
1810
+ }
1811
+
1812
+ @keyframes Toastify__bounceInDown {
1813
+ from,
1814
+ 60%,
1815
+ 75%,
1816
+ 90%,
1817
+ to {
1818
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
1819
+ }
1820
+ 0% {
1821
+ opacity: 0;
1822
+ transform: translate3d(0, -3000px, 0);
1823
+ }
1824
+ 60% {
1825
+ opacity: 1;
1826
+ transform: translate3d(0, 25px, 0);
1827
+ }
1828
+ 75% {
1829
+ transform: translate3d(0, -10px, 0);
1830
+ }
1831
+ 90% {
1832
+ transform: translate3d(0, 5px, 0);
1833
+ }
1834
+ to {
1835
+ transform: none;
1836
+ }
1837
+ }
1838
+
1839
+ @keyframes Toastify__bounceOutDown {
1840
+ 20% {
1841
+ transform: translate3d(0, calc(var(--y) - 10px), 0);
1842
+ }
1843
+ 40%,
1844
+ 45% {
1845
+ opacity: 1;
1846
+ transform: translate3d(0, calc(var(--y) + 20px), 0);
1847
+ }
1848
+ to {
1849
+ opacity: 0;
1850
+ transform: translate3d(0, 2000px, 0);
1851
+ }
1852
+ }
1853
+
1854
+ .Toastify__bounce-enter--top-left,
1855
+ .Toastify__bounce-enter--bottom-left {
1856
+ animation-name: Toastify__bounceInLeft;
1857
+ }
1858
+
1859
+ .Toastify__bounce-enter--top-right,
1860
+ .Toastify__bounce-enter--bottom-right {
1861
+ animation-name: Toastify__bounceInRight;
1862
+ }
1863
+
1864
+ .Toastify__bounce-enter--top-center {
1865
+ animation-name: Toastify__bounceInDown;
1866
+ }
1867
+
1868
+ .Toastify__bounce-enter--bottom-center {
1869
+ animation-name: Toastify__bounceInUp;
1870
+ }
1871
+
1872
+ .Toastify__bounce-exit--top-left,
1873
+ .Toastify__bounce-exit--bottom-left {
1874
+ animation-name: Toastify__bounceOutLeft;
1875
+ }
1876
+
1877
+ .Toastify__bounce-exit--top-right,
1878
+ .Toastify__bounce-exit--bottom-right {
1879
+ animation-name: Toastify__bounceOutRight;
1880
+ }
1881
+
1882
+ .Toastify__bounce-exit--top-center {
1883
+ animation-name: Toastify__bounceOutUp;
1884
+ }
1885
+
1886
+ .Toastify__bounce-exit--bottom-center {
1887
+ animation-name: Toastify__bounceOutDown;
1888
+ }
1889
+
1890
+ @keyframes Toastify__zoomIn {
1891
+ from {
1892
+ opacity: 0;
1893
+ transform: scale3d(0.3, 0.3, 0.3);
1894
+ }
1895
+ 50% {
1896
+ opacity: 1;
1897
+ }
1898
+ }
1899
+
1900
+ @keyframes Toastify__zoomOut {
1901
+ from {
1902
+ opacity: 1;
1903
+ }
1904
+ 50% {
1905
+ opacity: 0;
1906
+ transform: translate3d(0, var(--y), 0) scale3d(0.3, 0.3, 0.3);
1907
+ }
1908
+ to {
1909
+ opacity: 0;
1910
+ }
1911
+ }
1912
+
1913
+ .Toastify__zoom-enter {
1914
+ animation-name: Toastify__zoomIn;
1915
+ }
1916
+
1917
+ .Toastify__zoom-exit {
1918
+ animation-name: Toastify__zoomOut;
1919
+ }
1920
+
1921
+ @keyframes Toastify__flipIn {
1922
+ from {
1923
+ transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
1924
+ animation-timing-function: ease-in;
1925
+ opacity: 0;
1926
+ }
1927
+ 40% {
1928
+ transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
1929
+ animation-timing-function: ease-in;
1930
+ }
1931
+ 60% {
1932
+ transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
1933
+ opacity: 1;
1934
+ }
1935
+ 80% {
1936
+ transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
1937
+ }
1938
+ to {
1939
+ transform: perspective(400px);
1940
+ }
1941
+ }
1942
+
1943
+ @keyframes Toastify__flipOut {
1944
+ from {
1945
+ transform: translate3d(0, var(--y), 0) perspective(400px);
1946
+ }
1947
+ 30% {
1948
+ transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, -20deg);
1949
+ opacity: 1;
1950
+ }
1951
+ to {
1952
+ transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, 90deg);
1953
+ opacity: 0;
1954
+ }
1955
+ }
1956
+
1957
+ .Toastify__flip-enter {
1958
+ animation-name: Toastify__flipIn;
1959
+ }
1960
+
1961
+ .Toastify__flip-exit {
1962
+ animation-name: Toastify__flipOut;
1963
+ }
1964
+
1965
+ @keyframes Toastify__slideInRight {
1966
+ from {
1967
+ transform: translate3d(110%, 0, 0);
1968
+ visibility: visible;
1969
+ }
1970
+ to {
1971
+ transform: translate3d(0, var(--y), 0);
1972
+ }
1973
+ }
1974
+
1975
+ @keyframes Toastify__slideInLeft {
1976
+ from {
1977
+ transform: translate3d(-110%, 0, 0);
1978
+ visibility: visible;
1979
+ }
1980
+ to {
1981
+ transform: translate3d(0, var(--y), 0);
1982
+ }
1983
+ }
1984
+
1985
+ @keyframes Toastify__slideInUp {
1986
+ from {
1987
+ transform: translate3d(0, 110%, 0);
1988
+ visibility: visible;
1989
+ }
1990
+ to {
1991
+ transform: translate3d(0, var(--y), 0);
1992
+ }
1993
+ }
1994
+
1995
+ @keyframes Toastify__slideInDown {
1996
+ from {
1997
+ transform: translate3d(0, -110%, 0);
1998
+ visibility: visible;
1999
+ }
2000
+ to {
2001
+ transform: translate3d(0, var(--y), 0);
2002
+ }
2003
+ }
2004
+
2005
+ @keyframes Toastify__slideOutRight {
2006
+ from {
2007
+ transform: translate3d(0, var(--y), 0);
2008
+ }
2009
+ to {
2010
+ visibility: hidden;
2011
+ transform: translate3d(110%, var(--y), 0);
2012
+ }
2013
+ }
2014
+
2015
+ @keyframes Toastify__slideOutLeft {
2016
+ from {
2017
+ transform: translate3d(0, var(--y), 0);
2018
+ }
2019
+ to {
2020
+ visibility: hidden;
2021
+ transform: translate3d(-110%, var(--y), 0);
2022
+ }
2023
+ }
2024
+
2025
+ @keyframes Toastify__slideOutDown {
2026
+ from {
2027
+ transform: translate3d(0, var(--y), 0);
2028
+ }
2029
+ to {
2030
+ visibility: hidden;
2031
+ transform: translate3d(0, 500px, 0);
2032
+ }
2033
+ }
2034
+
2035
+ @keyframes Toastify__slideOutUp {
2036
+ from {
2037
+ transform: translate3d(0, var(--y), 0);
2038
+ }
2039
+ to {
2040
+ visibility: hidden;
2041
+ transform: translate3d(0, -500px, 0);
2042
+ }
2043
+ }
2044
+
2045
+ .Toastify__slide-enter--top-left,
2046
+ .Toastify__slide-enter--bottom-left {
2047
+ animation-name: Toastify__slideInLeft;
2048
+ }
2049
+
2050
+ .Toastify__slide-enter--top-right,
2051
+ .Toastify__slide-enter--bottom-right {
2052
+ animation-name: Toastify__slideInRight;
2053
+ }
2054
+
2055
+ .Toastify__slide-enter--top-center {
2056
+ animation-name: Toastify__slideInDown;
2057
+ }
2058
+
2059
+ .Toastify__slide-enter--bottom-center {
2060
+ animation-name: Toastify__slideInUp;
2061
+ }
2062
+
2063
+ .Toastify__slide-exit--top-left,
2064
+ .Toastify__slide-exit--bottom-left {
2065
+ animation-name: Toastify__slideOutLeft;
2066
+ animation-timing-function: ease-in;
2067
+ animation-duration: 0.3s;
2068
+ }
2069
+
2070
+ .Toastify__slide-exit--top-right,
2071
+ .Toastify__slide-exit--bottom-right {
2072
+ animation-name: Toastify__slideOutRight;
2073
+ animation-timing-function: ease-in;
2074
+ animation-duration: 0.3s;
2075
+ }
2076
+
2077
+ .Toastify__slide-exit--top-center {
2078
+ animation-name: Toastify__slideOutUp;
2079
+ animation-timing-function: ease-in;
2080
+ animation-duration: 0.3s;
2081
+ }
2082
+
2083
+ .Toastify__slide-exit--bottom-center {
2084
+ animation-name: Toastify__slideOutDown;
2085
+ animation-timing-function: ease-in;
2086
+ animation-duration: 0.3s;
2087
+ }
2088
+
2089
+ @keyframes Toastify__spin {
2090
+ from {
2091
+ transform: rotate(0deg);
2092
+ }
2093
+ to {
2094
+ transform: rotate(360deg);
2095
+ }
2096
+ }
1279
2097
  /* Customization of react-toastify messages/notifications. */
1280
2098
 
1281
2099
  .Toastify {
1282
- z-index: 999999;
1283
- position: fixed;
2100
+ --toastify-z-index: 999999;
1284
2101
  --toastify-toast-width: 350px;
1285
2102
  --toastify-toast-min-height: 68px;
1286
2103
  --toastify-toast-padding: 0 35px 0 70px;
1287
2104
  }
1288
- .Toastify__toast {
2105
+ .Toastify .Toastify__toast {
1289
2106
  margin-bottom: -1px;
1290
2107
  border: 1px solid #fff;
1291
2108
  }
1292
- .Toastify__toast {
2109
+ .Toastify .Toastify__toast {
1293
2110
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
1294
2111
  }
1295
- .Toastify__toast-container--top-center {
2112
+ .Toastify .Toastify__toast-container--top-center {
1296
2113
  top: 0;
1297
2114
  }
1298
- .Toastify__toast-body {
2115
+ .Toastify .Toastify__toast-body {
1299
2116
  margin: auto 20px;
1300
2117
  }
1301
2118
 
1302
- .Toastify__toast-theme--colored.Toastify__toast--error {
2119
+ .Toastify .Toastify__toast-theme--colored.Toastify__toast--error {
1303
2120
  background: #ecd9d9 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAQlJREFUeNpi/P//PwMtAQspivf29QmAaOeiog9ANlF6GIn1AdDAfiBVAOVOAOJCqlkANNwBSO1HE3YE4gOE9DIRGTr9RIqRbgHQ9QlAygCLFEgsgaIggkbqfSAWwKHkAxArQmmyfFCAx3AGqFwBWT4Aul4B6no4ACZPmBy6cpAvHpDqg34Sskg/SUEETZYBJFgAUutAig/6ySgV+omyAE+yJASwJlsmLMmyn4F80I+e6lhISZZEFHCwZNuAkUyxJUsKADzZMpESsaB8AMsLxEY4E5nJkuhkC4uDeiLrBFIj3JDZlo9PAVqBUBtIAPFCJlxlCJXAA1gkJ9LA8ESS6mRyARMDjQFAgAEAi9hTqMxme4UAAAAASUVORK5CYII=') no-repeat 25px center;
1304
2121
  color: rgb(130, 0, 0);
1305
2122
  }
1306
- .Toastify__toast-theme--colored.Toastify__toast--success {
2123
+ .Toastify .Toastify__toast-theme--colored.Toastify__toast--success {
1307
2124
  background: #cce0cc url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAYNJREFUeNpi/P//PwMtAQs+yY7NPYJAKhKIPYFYD4glgPgXED8B4jtAvB2Il1f4lrzHoZ+BEZsPgBIcQKoQiMuAWICAIz8AcTcQ9wMt+o5uARMWwxWA1GkgbiPCcAaomlYgPgXViwKY0AyXAVKHgViHjOAG6TkMNQPTAmiwrANiGQriVAZqBlYfFACxKRUSjimGBUDXCwGpCmokS2BEg6j/6D4AJUV+KhkOC/JsZAvcqWw4iPJAtsCAyoaDgD6yBeJUNhxuJsyCn7g0IxtAguEYyfQ5sa4kwfCXyBbcxFVYYTOQGJcDwUVkC3biKVFxBhkew0FgB7IFy4H4IzGWEGn4R6iZEAuArnoHpDoJ1A3EGs4ANQtkJqI+AGriBFIngViXwjx3BYjNgPg7SmEHrSyCgPgZBYY/BeJAmOEY9QHQElA1aAN1BTkut4FWpah1MlqY3od6EVRllpJSZSK7nFCl/x1aZU4H4ihowQWq9CWRMuYlaFJcBsTvcdnOSOtmC0CAAQDdhonhy/OiLAAAAABJRU5ErkJggg==') no-repeat 25px center;
1308
2125
  color: rgb(0, 100, 0);
1309
2126
  }
1310
2127
 
1311
- .Toastify__close-button {
2128
+ .Toastify .Toastify__close-button {
1312
2129
  top: 0;
1313
2130
  right: 0;
1314
2131
  height: 100%;
1315
2132
  padding: 5px 10px;
1316
2133
  color: #111;
1317
2134
  font-weight: normal;
1318
- align-self: auto;
1319
2135
  transition: 0.05s;
1320
2136
  background: rgba(0, 0, 0, 0.05);
1321
2137
  border-radius: 0;
1322
2138
  opacity: 1;
1323
2139
  }
1324
- .Toastify__close-button:hover {
2140
+ .Toastify .Toastify__close-button:hover {
1325
2141
  background: rgba(0, 0, 0, 0.1);
1326
2142
  }
1327
2143
 
1328
- .Toastify__toast-icon {
2144
+ .Toastify .Toastify__toast-icon {
1329
2145
  display: none;
1330
2146
  }
1331
2147
 
@@ -1809,6 +2625,7 @@ h2.react-datepicker__current-month {
1809
2625
  .react-datepicker__quarter-text--keyboard-selected:not([aria-disabled=true]):hover,
1810
2626
  .react-datepicker__year-text--keyboard-selected:not([aria-disabled=true]):hover {
1811
2627
  background-color: rgb(28.75, 93.2196969697, 143.75);
2628
+ color: #fff;
1812
2629
  }
1813
2630
  .react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range,
1814
2631
  .react-datepicker__month-text--in-range,
@@ -2619,3 +3436,4 @@ h2.react-datepicker__current-month {
2619
3436
  font-weight: bold;
2620
3437
  border-top: 1px solid #ddd;
2621
3438
  }
3439
+ /*$vite$:1*/