@bi-digital/css 0.7.0 → 0.8.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.
@@ -1445,6 +1445,94 @@ body:has(.bi-dialog:modal) {
1445
1445
  }
1446
1446
  }
1447
1447
 
1448
+ .bi-popover {
1449
+ --bic-popover-arrow-size: var(--bi-scale-3x);
1450
+ --bic-popover-background: var(--bi-basic-white);
1451
+ --bic-popover-border-width: var(--bi-stroke-thin);
1452
+ --bic-popover-border-style: solid;
1453
+ --bic-popover-border-color: var(--bi-neutral-15);
1454
+ --bic-popover-color: var(--bi-neutral-90);
1455
+ --bic-popover-border-radius: var(--bi-radius-medium);
1456
+ --bic-popover-max-width: 300px;
1457
+ --bic-popover-padding: var(--bi-scale-1x);
1458
+ --bic-popover-box-shadow: 0px 8px 16px -4px #26333f14, 4px 4px 6px -2px #26333f08,
1459
+ 0px 2px 2px -1px #26333f0a;
1460
+ }
1461
+
1462
+ .bi-popover[data-dark="true"] {
1463
+ --bic-popover-background: var(--bi-neutral-95);
1464
+ --bic-popover-border-color: var(--bi-neutral-70);
1465
+ --bic-popover-color: var(--bi-neutral-5);
1466
+ --bic-popover-box-shadow: 0px 8px 16px -4px #26333f14, 4px 4px 6px -2px #26333f08,
1467
+ 0px 2px 2px -1px #26333f0a;
1468
+ }
1469
+
1470
+ .bi-popover {
1471
+ background: var(--bic-popover-background);
1472
+ border-radius: var(--bic-popover-border-radius);
1473
+ border-width: var(--bic-popover-border-width);
1474
+ border-style: var(--bic-popover-border-style);
1475
+ border-color: var(--bic-popover-border-color);
1476
+ box-shadow: var(--bic-popover-box-shadow);
1477
+ box-sizing: border-box;
1478
+ color: var(--bic-popover-color);
1479
+ max-width: var(--bic-popover-max-width);
1480
+ padding: var(--bic-popover-padding);
1481
+ z-index: 100000;
1482
+ display: none;
1483
+ position: fixed;
1484
+ inset: 0 auto auto 0;
1485
+ overflow: visible;
1486
+ }
1487
+
1488
+ .bi-popover[aria-hidden="false"] {
1489
+ display: block;
1490
+ }
1491
+
1492
+ .bi-popover[data-arrow="true"]:before {
1493
+ background: var(--bic-popover-background);
1494
+ border: inherit;
1495
+ box-sizing: border-box;
1496
+ content: "";
1497
+ height: var(--bic-popover-arrow-size);
1498
+ left: var(--bic-popover-arrow-x);
1499
+ top: var(--bic-popover-arrow-y);
1500
+ width: var(--bic-popover-arrow-size);
1501
+ border-top-color: #0000;
1502
+ border-left-color: #0000;
1503
+ position: absolute;
1504
+ translate: -50% -50%;
1505
+ }
1506
+
1507
+ .bi-popover[data-arrow="true"][data-placement="top"]:before {
1508
+ rotate: 45deg;
1509
+ }
1510
+
1511
+ .bi-popover[data-arrow="true"][data-placement="left"]:before {
1512
+ rotate: -45deg;
1513
+ }
1514
+
1515
+ .bi-popover[data-arrow="true"][data-placement="right"]:before {
1516
+ rotate: 135deg;
1517
+ }
1518
+
1519
+ .bi-popover[data-arrow="true"][data-placement="bottom"]:before {
1520
+ rotate: -135deg;
1521
+ }
1522
+
1523
+ [data-popover="inline"] {
1524
+ all: unset;
1525
+ cursor: pointer;
1526
+ text-underline-offset: .27em;
1527
+ font-size: inherit;
1528
+ -webkit-text-decoration: underline dotted;
1529
+ text-decoration: underline dotted;
1530
+ }
1531
+
1532
+ [data-popover="inline"]:not([hidden]) {
1533
+ display: inline;
1534
+ }
1535
+
1448
1536
  .bi-dropdown {
1449
1537
  --bic-dropdown-padding: var(--bi-scale-1x);
1450
1538
  --bic-dropdown-item-padding: var(--bi-scale-2x) var(--bi-scale-3x);
@@ -1455,6 +1543,7 @@ body:has(.bi-dialog:modal) {
1455
1543
  --bic-dropdown-border-color: var(--bi-neutral-15);
1456
1544
  --bic-dropdown-box-shadow: 0px 8px 16px -4px #26333f14, 4px 4px 6px -2px #26333f08,
1457
1545
  0px 2px 2px -1px #26333f0a;
1546
+ --bic-dropdown-min-width: var(--bi-scale-64x);
1458
1547
  }
1459
1548
 
1460
1549
  .bi-dropdown[data-dark="true"] {
@@ -1473,33 +1562,270 @@ body:has(.bi-dialog:modal) {
1473
1562
  border-color: var(--bic-dropdown-border-color);
1474
1563
  box-shadow: var(--bic-dropdown-box-shadow);
1475
1564
  box-sizing: border-box;
1476
- min-width: var(--bi-scale-64x);
1565
+ min-width: max(var(--bic-dropdown-min-width), var(--bic-popover-trigger-width, 0px));
1477
1566
  padding: var(--bic-dropdown-padding);
1478
1567
  list-style: none;
1479
1568
  }
1480
1569
 
1481
- .bi-dropdown ul {
1482
- gap: var(--bi-scale-1x);
1483
- flex-direction: column;
1484
- margin: 0;
1485
- padding: 0;
1486
- list-style: none;
1487
- display: flex;
1570
+ .bi-dropdown ul {
1571
+ gap: var(--bi-scale-1x);
1572
+ flex-direction: column;
1573
+ margin: 0;
1574
+ padding: 0;
1575
+ list-style: none;
1576
+ display: flex;
1577
+ }
1578
+
1579
+ .bi-dropdown :is(a, button, [role="button"]) {
1580
+ padding: var(--bic-dropdown-item-padding);
1581
+ min-height: var(--bic-dropdown-item-size);
1582
+ justify-content: start;
1583
+ width: 100%;
1584
+ }
1585
+
1586
+ .bi-dropdown :is(a, button, [role="button"]) .bi-button--end-icon {
1587
+ margin-left: auto;
1588
+ }
1589
+
1590
+ .bi-button[aria-expanded="true"] {
1591
+ box-shadow: 0px 0px 0px 1.5px var(--bi-primary-50) inset;
1592
+ }
1593
+
1594
+ :where(.bi-input) {
1595
+ margin: 0;
1596
+ }
1597
+
1598
+ .bi-input {
1599
+ --bic-input-border-color-invalid: var(--bi-alert-50);
1600
+ --bic-input-box-shadow: 0 0 0 var(--bi-stroke-thin) var(--bic-input-border-color);
1601
+ --bic-input-box-shadow-hover: 0 0 0 var(--bi-stroke-thick) var(--bic-input-border-color-hover);
1602
+ --bic-input-caret-color: var(--bi-primary-50);
1603
+ --bic-input-font-size: 1rem;
1604
+ --bic-input-padding: var(--bi-scale-3x);
1605
+ --bic-input-size: var(--bi-scale-11x);
1606
+ --bic-input-toggle-background: var(--bi-primary-50);
1607
+ --bic-input-toggle-color: var(--bi-basic-white);
1608
+ --bic-input-toggle-size: 1.125rem;
1609
+ --bic-input-background: var(--bi-basic-white);
1610
+ --bic-input-background-readonly: var(--bi-neutral-10);
1611
+ --bic-input-border-color: var(--bi-neutral-50);
1612
+ --bic-input-border-color-hover: var(--bi-neutral-50);
1613
+ --bic-input-border-color-readonly: var(--bi-neutral-50);
1614
+ --bic-input-color-readonly: var(--bi-neutral-95);
1615
+ --bic-input-color: var(--bi-neutral-95);
1616
+ --bic-input-disabled-color: var(--bi-neutral-50);
1617
+ --bic-input-placeholder-color: var(--bi-neutral-60);
1618
+ --bic-input-focus-outline-color: var(--bi-primary-50);
1619
+ --bic-input-focus-shadow-color: var(--bi-basic-white);
1620
+ --bic-input-select-chevron: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"1em\" height=\"1em\" fill=\"none\" viewBox=\"0 0 24 24\"><path fill=\"%23222d38\" fill-rule=\"evenodd\" d=\"M5.97 9.47a.75.75 0 0 1 1.06 0L12 14.44l4.97-4.97a.75.75 0 1 1 1.06 1.06l-5.5 5.5a.75.75 0 0 1-1.06 0l-5.5-5.5a.75.75 0 0 1 0-1.06\" clip-rule=\"evenodd\"></path></svg>");
1621
+ }
1622
+
1623
+ .bi-input[data-dark="true"] {
1624
+ --bic-input-background: var(--bi-neutral-95);
1625
+ --bic-input-background-readonly: var(--bi-neutral-50);
1626
+ --bic-input-border-color-hover: var(--bi-neutral-25);
1627
+ --bic-input-color-readonly: var(--bi-basic-white);
1628
+ --bic-input-color: var(--bi-basic-white);
1629
+ --bic-input-disabled-color: var(--bi-neutral-40);
1630
+ --bic-input-placeholder-color: var(--bi-neutral-30);
1631
+ --bic-input-focus-outline-color: var(--bi-primary-30);
1632
+ --bic-input-focus-shadow-color: var(--bi-neutral-95);
1633
+ --bic-input-select-chevron: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"1em\" height=\"1em\" fill=\"none\" viewBox=\"0 0 24 24\"><path fill=\"white\" fill-rule=\"evenodd\" d=\"M5.97 9.47a.75.75 0 0 1 1.06 0L12 14.44l4.97-4.97a.75.75 0 1 1 1.06 1.06l-5.5 5.5a.75.75 0 0 1-1.06 0l-5.5-5.5a.75.75 0 0 1 0-1.06\" clip-rule=\"evenodd\"></path></svg>");
1634
+ }
1635
+
1636
+ .bi-input {
1637
+ appearance: none;
1638
+ background: var(--bic-input-background);
1639
+ border-radius: var(--bi-radius-medium);
1640
+ box-shadow: var(--bic-input-box-shadow);
1641
+ box-sizing: border-box;
1642
+ color: var(--bic-input-color);
1643
+ font-family: inherit;
1644
+ font-size: var(--bic-input-font-size);
1645
+ height: var(--bic-input-size);
1646
+ min-width: 0;
1647
+ max-width: 100%;
1648
+ padding: var(--bic-input-padding);
1649
+ vertical-align: middle;
1650
+ caret-color: var(--bic-input-caret-color);
1651
+ border: none;
1652
+ line-height: 1;
1653
+ position: relative;
1654
+ }
1655
+
1656
+ .bi-input[data-size="large"] {
1657
+ --bic-input-size: var(--bi-scale-14x);
1658
+ --bic-input-font-size: 1.25rem;
1659
+ }
1660
+
1661
+ .bi-input:where(:not([type="checkbox"], [type="radio"])):hover {
1662
+ box-shadow: var(--_bi--hover, var(--bic-input-box-shadow-hover));
1663
+ }
1664
+
1665
+ .bi-input:where(:not([type="checkbox"], [type="radio"])):focus-visible {
1666
+ --bic-input-border-color: var(--bic-input-focus-outline-color);
1667
+ }
1668
+
1669
+ .bi-input:focus-visible {
1670
+ outline: var(--_bi--focus, 3px solid var(--bic-input-focus-outline-color));
1671
+ outline-offset: 0;
1672
+ box-shadow: var(--_bi--focus, 0px 0px 20px var(--bi-scale-1-5x) #0000000d,
1673
+ 0px 0px 10px 0px #0000000d);
1674
+ }
1675
+
1676
+ .bi-input:focus-visible * {
1677
+ --_bi--focus: ;
1678
+ }
1679
+
1680
+ .bi-input::placeholder {
1681
+ color: var(--bic-input-placeholder-color);
1682
+ }
1683
+
1684
+ .bi-input:not([size], [cols]) {
1685
+ width: 100%;
1686
+ }
1687
+
1688
+ .bi-input:disabled, .bi-input[aria-disabled="true"] {
1689
+ cursor: not-allowed;
1690
+ }
1691
+
1692
+ .bi-input[aria-invalid="true"] {
1693
+ --bic-input-border-color: var(--bic-input-border-color-invalid);
1694
+ }
1695
+
1696
+ .bi-input[readonly], .bi-input:disabled, .bi-input[aria-disabled="true"] {
1697
+ background: var(--bic-input-background-readonly);
1698
+ --bic-input-border-color: var(--bic-input-border-color-readonly);
1699
+ color: var(--bic-input-color-readonly);
1700
+ }
1701
+
1702
+ .bi-input:is(textarea) {
1703
+ height: auto;
1704
+ min-height: calc(var(--bic-input-size) * 2);
1705
+ resize: vertical;
1706
+ }
1707
+
1708
+ .bi-input:is(textarea):not([rows]) {
1709
+ field-sizing: content;
1710
+ }
1711
+
1712
+ .bi-input:is(select):not([readonly], [aria-disabled="true"], :disabled) {
1713
+ cursor: pointer;
1714
+ }
1715
+
1716
+ .bi-input:is(select) {
1717
+ background-image: var(--bic-input-select-chevron);
1718
+ background-position: calc(100% - .5em);
1719
+ background-repeat: no-repeat;
1720
+ background-size: 1.5em;
1721
+ }
1722
+
1723
+ .bi-input[type="checkbox"], .bi-input[type="radio"] {
1724
+ padding: var(--bi-scale-0-50x);
1725
+ line-height: inherit;
1726
+ height: var(--bic-input-toggle-size);
1727
+ width: var(--bic-input-toggle-size);
1728
+ box-shadow: none;
1729
+ border-width: var(--bi-stroke-medium);
1730
+ border-style: solid;
1731
+ border-color: var(--bic-input-border-color);
1732
+ background: none;
1733
+ flex-shrink: 0;
1734
+ }
1735
+
1736
+ :is(.bi-input[type="checkbox"], .bi-input[type="radio"]):focus-visible {
1737
+ box-shadow: var(--_bi--focus, 0 0 0 4.5px var(--bic-input-focus-shadow-color));
1738
+ outline: var(--_bi--focus, 3px solid var(--bic-input-focus-outline-color));
1739
+ outline-offset: var(--_bi--focus, 3px);
1740
+ }
1741
+
1742
+ :is(.bi-input[type="checkbox"], .bi-input[type="radio"]):focus-visible * {
1743
+ --_bi--focus: ;
1744
+ }
1745
+
1746
+ :is(.bi-input[type="checkbox"], .bi-input[type="radio"]):read-only:not([readonly], [aria-disabled="true"], :disabled) {
1747
+ cursor: pointer;
1748
+ }
1749
+
1750
+ :is(.bi-input[type="checkbox"], .bi-input[type="radio"])[type="radio"] {
1751
+ border-radius: var(--bi-radius-full);
1752
+ }
1753
+
1754
+ :is(.bi-input[type="checkbox"], .bi-input[type="radio"])[type="radio"]:before {
1755
+ content: "";
1756
+ background-color: var(--bic-input-toggle-background);
1757
+ border-radius: 100%;
1758
+ width: 0;
1759
+ height: 0;
1760
+ transition: width .1s ease-in-out, height .1s ease-in-out;
1761
+ display: block;
1762
+ position: absolute;
1763
+ top: 50%;
1764
+ left: 50%;
1765
+ transform: translate(-50%, -50%);
1766
+ }
1767
+
1768
+ :is(.bi-input[type="checkbox"], .bi-input[type="radio"])[type="radio"]:checked {
1769
+ --bic-input-border-color: var(--bic-input-toggle-background);
1770
+ }
1771
+
1772
+ :is(.bi-input[type="checkbox"], .bi-input[type="radio"])[type="radio"]:checked:before {
1773
+ width: 12px;
1774
+ height: 12px;
1775
+ }
1776
+
1777
+ :is(.bi-input[type="checkbox"], .bi-input[type="radio"])[type="checkbox"]:not([role="switch"]) {
1778
+ border-radius: var(--bi-radius-small);
1779
+ place-content: center;
1780
+ display: grid;
1781
+ }
1782
+
1783
+ :is(.bi-input[type="checkbox"], .bi-input[type="radio"])[type="checkbox"]:not([role="switch"]):before {
1784
+ content: "";
1785
+ width: .7em;
1786
+ height: .7em;
1787
+ box-shadow: inset 1em 1em var(--bic-input-toggle-color);
1788
+ transform-origin: center;
1789
+ clip-path: polygon(9.73% 39.66%, 0% 49.25%, 34.81% 84.58%, 100% 20%, 90.45% 10.31%, 34.81% 65.12%);
1790
+ transition: transform .2s ease-in-out;
1791
+ transform: scale(0);
1792
+ }
1793
+
1794
+ :is(.bi-input[type="checkbox"], .bi-input[type="radio"])[type="checkbox"]:not([role="switch"]):where(:checked, :indeterminate) {
1795
+ background: var(--bic-input-toggle-background);
1796
+ --bic-input-border-color: var(--bic-input-toggle-background);
1797
+ }
1798
+
1799
+ :is(.bi-input[type="checkbox"], .bi-input[type="radio"])[type="checkbox"]:not([role="switch"]):where(:checked, :indeterminate):before {
1800
+ transform: scale(1);
1488
1801
  }
1489
1802
 
1490
- .bi-dropdown :is(a, button, [role="button"]) {
1491
- padding: var(--bic-dropdown-item-padding);
1492
- min-height: var(--bic-dropdown-item-size);
1493
- justify-content: start;
1494
- width: 100%;
1803
+ :is(.bi-input[type="checkbox"], .bi-input[type="radio"])[type="checkbox"]:not([role="switch"]):indeterminate:before {
1804
+ clip-path: polygon(0% 42%, 0% 58%, 100% 58%, 100% 42%);
1495
1805
  }
1496
1806
 
1497
- .bi-dropdown :is(a, button, [role="button"]) .bi-button--end-icon {
1498
- margin-left: auto;
1807
+ :is(.bi-input[type="checkbox"], .bi-input[type="radio"])[type="checkbox"][role="switch"] {
1808
+ --_bic-input-circle-position-x: var(--bi-scale-0-50x);
1809
+ background: var(--bi-neutral-50);
1499
1810
  }
1500
1811
 
1501
- .bi-button[aria-expanded="true"] {
1502
- box-shadow: 0px 0px 0px 1.5px var(--bi-primary-50) inset;
1812
+ :is(.bi-input[type="checkbox"], .bi-input[type="radio"])[type="checkbox"][role="switch"]:where(:checked) {
1813
+ --_bic-input-circle-position-x: calc(100% - var(--bi-scale-0-50x));
1814
+ background: var(--bic-input-toggle-background);
1815
+ --bic-input-border-color: var(--bic-input-toggle-background);
1816
+ }
1817
+
1818
+ :is(.bi-input[type="checkbox"], .bi-input[type="radio"])[type="checkbox"][role="switch"] {
1819
+ background-image: radial-gradient(circle closest-side, var(--bi-basic-white) 95%, transparent 100%);
1820
+ background-origin: content-box;
1821
+ background-position: var(--_bic-input-circle-position-x);
1822
+ background-repeat: no-repeat;
1823
+ background-size: calc(var(--bic-input-toggle-size)) 100%;
1824
+ border-radius: var(--bi-radius-full);
1825
+ width: var(--bi-scale-11x);
1826
+ height: var(--bi-scale-6x);
1827
+ padding-inline: 0;
1828
+ transition: background-position .2s;
1503
1829
  }
1504
1830
 
1505
1831
  .bi-field {
@@ -1972,359 +2298,122 @@ body:has(.bi-dialog:modal) {
1972
2298
  }
1973
2299
 
1974
2300
  .bi-footer .bi-footer--accreditations {
1975
- justify-content: center;
1976
- align-items: center;
1977
- gap: var(--bi-scale-12x);
1978
- flex-wrap: wrap;
1979
- min-height: 58px;
1980
- display: flex;
1981
- }
1982
-
1983
- @media (width < 600px) {
1984
- .bi-footer .bi-footer--accreditations {
1985
- gap: var(--bi-scale-2x) var(--bi-scale-1x);
1986
- }
1987
- }
1988
-
1989
- .bi-footer .bi-footer--accreditations .bi-footer--aacsb, .bi-footer .bi-footer--accreditations .bi-footer--amba, .bi-footer .bi-footer--accreditations .bi-footer--equis {
1990
- background-position: center;
1991
- background-repeat: no-repeat;
1992
- background-size: contain;
1993
- height: 58px;
1994
- display: block;
1995
- }
1996
-
1997
- .bi-footer .bi-footer--accreditations .bi-footer--aacsb {
1998
- background-image: url("./assets/accreditations/aacsb.svg");
1999
- width: 127px;
2000
- }
2001
-
2002
- .bi-footer .bi-footer--accreditations .bi-footer--aacsb:is([data-dark="true"] .bi-footer--aacsb) {
2003
- background-image: url("./assets/accreditations/aacsb-neg.svg");
2004
- }
2005
-
2006
- .bi-footer .bi-footer--accreditations .bi-footer--amba {
2007
- background-image: url("./assets/accreditations/amba.svg");
2008
- width: 122px;
2009
- }
2010
-
2011
- .bi-footer .bi-footer--accreditations .bi-footer--amba:is([data-dark="true"] .bi-footer--amba) {
2012
- background-image: url("./assets/accreditations/amba-neg.svg");
2013
- }
2014
-
2015
- .bi-footer .bi-footer--accreditations .bi-footer--equis {
2016
- background-image: url("./assets/accreditations/equis.svg");
2017
- width: 104px;
2018
- }
2019
-
2020
- .bi-footer .bi-footer--accreditations .bi-footer--equis:is([data-dark="true"] .bi-footer--equis) {
2021
- background-image: url("./assets/accreditations/equis-neg.svg");
2022
- }
2023
-
2024
- .bi-footer .bi-footer--socials {
2025
- justify-content: center;
2026
- align-items: center;
2027
- gap: var(--bi-scale-8x);
2028
- flex-wrap: wrap;
2029
- display: flex;
2030
- }
2031
-
2032
- @media (width < 600px) {
2033
- .bi-footer .bi-footer--socials {
2034
- gap: var(--bi-scale-2x);
2035
- }
2036
- }
2037
-
2038
- .bi-footer .bi-footer--copyright {
2039
- text-align: center;
2040
- margin: 0;
2041
- font-family: museo-slab, serif;
2042
- font-size: 1rem;
2043
- font-weight: 500;
2044
- line-height: 1.5;
2045
- }
2046
-
2047
- svg {
2048
- --bic-icon-size: inherit;
2049
- font-size: var(--bic-icon-size);
2050
- display: inline-block;
2051
- }
2052
-
2053
- svg[data-size="2xl"] {
2054
- --bic-icon-size: var(--bi-icon-2xl) !important;
2055
- }
2056
-
2057
- svg[data-size="xl"] {
2058
- --bic-icon-size: var(--bi-icon-xl) !important;
2059
- }
2060
-
2061
- svg[data-size="large"] {
2062
- --bic-icon-size: var(--bi-icon-large) !important;
2063
- }
2064
-
2065
- svg[data-size="medium"] {
2066
- --bic-icon-size: var(--bi-icon-medium) !important;
2067
- }
2068
-
2069
- svg[data-size="small"] {
2070
- --bic-icon-size: var(--bi-icon-small) !important;
2071
- }
2072
-
2073
- svg[data-color="inherit"] {
2074
- color: inherit;
2075
- }
2076
-
2077
- svg[data-color="primary"] {
2078
- color: #01417b;
2079
- }
2080
-
2081
- svg[data-color="gray"] {
2082
- color: #1c1b1b;
2083
- }
2084
-
2085
- svg[data-color="black"] {
2086
- color: var(--bi-basic-key);
2087
- }
2088
-
2089
- svg[data-color="white"] {
2090
- color: var(--bi-basic-white);
2091
- }
2092
-
2093
- :where(.bi-input) {
2094
- margin: 0;
2095
- }
2096
-
2097
- .bi-input {
2098
- --bic-input-border-color-invalid: var(--bi-alert-50);
2099
- --bic-input-box-shadow: 0 0 0 var(--bi-stroke-thin) var(--bic-input-border-color);
2100
- --bic-input-box-shadow-hover: 0 0 0 var(--bi-stroke-thick) var(--bic-input-border-color-hover);
2101
- --bic-input-caret-color: var(--bi-primary-50);
2102
- --bic-input-font-size: 1rem;
2103
- --bic-input-padding: var(--bi-scale-3x);
2104
- --bic-input-size: var(--bi-scale-11x);
2105
- --bic-input-toggle-background: var(--bi-primary-50);
2106
- --bic-input-toggle-color: var(--bi-basic-white);
2107
- --bic-input-toggle-size: 1.125rem;
2108
- --bic-input-background: var(--bi-basic-white);
2109
- --bic-input-background-readonly: var(--bi-neutral-10);
2110
- --bic-input-border-color: var(--bi-neutral-50);
2111
- --bic-input-border-color-hover: var(--bi-neutral-50);
2112
- --bic-input-border-color-readonly: var(--bi-neutral-50);
2113
- --bic-input-color-readonly: var(--bi-neutral-95);
2114
- --bic-input-color: var(--bi-neutral-95);
2115
- --bic-input-disabled-color: var(--bi-neutral-50);
2116
- --bic-input-placeholder-color: var(--bi-neutral-60);
2117
- --bic-input-focus-outline-color: var(--bi-primary-50);
2118
- --bic-input-focus-shadow-color: var(--bi-basic-white);
2119
- --bic-input-select-chevron: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"1em\" height=\"1em\" fill=\"none\" viewBox=\"0 0 24 24\"><path fill=\"%23222d38\" fill-rule=\"evenodd\" d=\"M5.97 9.47a.75.75 0 0 1 1.06 0L12 14.44l4.97-4.97a.75.75 0 1 1 1.06 1.06l-5.5 5.5a.75.75 0 0 1-1.06 0l-5.5-5.5a.75.75 0 0 1 0-1.06\" clip-rule=\"evenodd\"></path></svg>");
2120
- }
2121
-
2122
- .bi-input[data-dark="true"] {
2123
- --bic-input-background: var(--bi-neutral-95);
2124
- --bic-input-background-readonly: var(--bi-neutral-50);
2125
- --bic-input-border-color-hover: var(--bi-neutral-25);
2126
- --bic-input-color-readonly: var(--bi-basic-white);
2127
- --bic-input-color: var(--bi-basic-white);
2128
- --bic-input-disabled-color: var(--bi-neutral-40);
2129
- --bic-input-placeholder-color: var(--bi-neutral-30);
2130
- --bic-input-focus-outline-color: var(--bi-primary-30);
2131
- --bic-input-focus-shadow-color: var(--bi-neutral-95);
2132
- --bic-input-select-chevron: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"1em\" height=\"1em\" fill=\"none\" viewBox=\"0 0 24 24\"><path fill=\"white\" fill-rule=\"evenodd\" d=\"M5.97 9.47a.75.75 0 0 1 1.06 0L12 14.44l4.97-4.97a.75.75 0 1 1 1.06 1.06l-5.5 5.5a.75.75 0 0 1-1.06 0l-5.5-5.5a.75.75 0 0 1 0-1.06\" clip-rule=\"evenodd\"></path></svg>");
2133
- }
2134
-
2135
- .bi-input {
2136
- appearance: none;
2137
- background: var(--bic-input-background);
2138
- border-radius: var(--bi-radius-medium);
2139
- box-shadow: var(--bic-input-box-shadow);
2140
- box-sizing: border-box;
2141
- color: var(--bic-input-color);
2142
- font-family: inherit;
2143
- font-size: var(--bic-input-font-size);
2144
- height: var(--bic-input-size);
2145
- min-width: 0;
2146
- max-width: 100%;
2147
- padding: var(--bic-input-padding);
2148
- vertical-align: middle;
2149
- caret-color: var(--bic-input-caret-color);
2150
- border: none;
2151
- line-height: 1;
2152
- position: relative;
2153
- }
2154
-
2155
- .bi-input[data-size="large"] {
2156
- --bic-input-size: var(--bi-scale-14x);
2157
- --bic-input-font-size: 1.25rem;
2158
- }
2159
-
2160
- .bi-input:where(:not([type="checkbox"], [type="radio"])):hover {
2161
- box-shadow: var(--_bi--hover, var(--bic-input-box-shadow-hover));
2162
- }
2163
-
2164
- .bi-input:where(:not([type="checkbox"], [type="radio"])):focus-visible {
2165
- --bic-input-border-color: var(--bic-input-focus-outline-color);
2166
- }
2167
-
2168
- .bi-input:focus-visible {
2169
- outline: var(--_bi--focus, 3px solid var(--bic-input-focus-outline-color));
2170
- outline-offset: 0;
2171
- box-shadow: var(--_bi--focus, 0px 0px 20px var(--bi-scale-1-5x) #0000000d,
2172
- 0px 0px 10px 0px #0000000d);
2173
- }
2174
-
2175
- .bi-input:focus-visible * {
2176
- --_bi--focus: ;
2177
- }
2178
-
2179
- .bi-input::placeholder {
2180
- color: var(--bic-input-placeholder-color);
2181
- }
2182
-
2183
- .bi-input:not([size], [cols]) {
2184
- width: 100%;
2185
- }
2186
-
2187
- .bi-input:disabled, .bi-input[aria-disabled="true"] {
2188
- cursor: not-allowed;
2301
+ justify-content: center;
2302
+ align-items: center;
2303
+ gap: var(--bi-scale-12x);
2304
+ flex-wrap: wrap;
2305
+ min-height: 58px;
2306
+ display: flex;
2189
2307
  }
2190
2308
 
2191
- .bi-input[aria-invalid="true"] {
2192
- --bic-input-border-color: var(--bic-input-border-color-invalid);
2309
+ @media (width < 600px) {
2310
+ .bi-footer .bi-footer--accreditations {
2311
+ gap: var(--bi-scale-2x) var(--bi-scale-1x);
2312
+ }
2193
2313
  }
2194
2314
 
2195
- .bi-input[readonly], .bi-input:disabled, .bi-input[aria-disabled="true"] {
2196
- background: var(--bic-input-background-readonly);
2197
- --bic-input-border-color: var(--bic-input-border-color-readonly);
2198
- color: var(--bic-input-color-readonly);
2315
+ .bi-footer .bi-footer--accreditations .bi-footer--aacsb, .bi-footer .bi-footer--accreditations .bi-footer--amba, .bi-footer .bi-footer--accreditations .bi-footer--equis {
2316
+ background-position: center;
2317
+ background-repeat: no-repeat;
2318
+ background-size: contain;
2319
+ height: 58px;
2320
+ display: block;
2199
2321
  }
2200
2322
 
2201
- .bi-input:is(textarea) {
2202
- height: auto;
2203
- min-height: calc(var(--bic-input-size) * 2);
2204
- resize: vertical;
2323
+ .bi-footer .bi-footer--accreditations .bi-footer--aacsb {
2324
+ background-image: url("./assets/accreditations/aacsb.svg");
2325
+ width: 127px;
2205
2326
  }
2206
2327
 
2207
- .bi-input:is(textarea):not([rows]) {
2208
- field-sizing: content;
2328
+ .bi-footer .bi-footer--accreditations .bi-footer--aacsb:is([data-dark="true"] .bi-footer--aacsb) {
2329
+ background-image: url("./assets/accreditations/aacsb-neg.svg");
2209
2330
  }
2210
2331
 
2211
- .bi-input:is(select):not([readonly], [aria-disabled="true"], :disabled) {
2212
- cursor: pointer;
2332
+ .bi-footer .bi-footer--accreditations .bi-footer--amba {
2333
+ background-image: url("./assets/accreditations/amba.svg");
2334
+ width: 122px;
2213
2335
  }
2214
2336
 
2215
- .bi-input:is(select) {
2216
- background-image: var(--bic-input-select-chevron);
2217
- background-position: calc(100% - .5em);
2218
- background-repeat: no-repeat;
2219
- background-size: 1.5em;
2337
+ .bi-footer .bi-footer--accreditations .bi-footer--amba:is([data-dark="true"] .bi-footer--amba) {
2338
+ background-image: url("./assets/accreditations/amba-neg.svg");
2220
2339
  }
2221
2340
 
2222
- .bi-input[type="checkbox"], .bi-input[type="radio"] {
2223
- padding: var(--bi-scale-0-50x);
2224
- line-height: inherit;
2225
- height: var(--bic-input-toggle-size);
2226
- width: var(--bic-input-toggle-size);
2227
- box-shadow: none;
2228
- border-width: var(--bi-stroke-medium);
2229
- border-style: solid;
2230
- border-color: var(--bic-input-border-color);
2231
- background: none;
2232
- flex-shrink: 0;
2341
+ .bi-footer .bi-footer--accreditations .bi-footer--equis {
2342
+ background-image: url("./assets/accreditations/equis.svg");
2343
+ width: 104px;
2233
2344
  }
2234
2345
 
2235
- :is(.bi-input[type="checkbox"], .bi-input[type="radio"]):focus-visible {
2236
- box-shadow: var(--_bi--focus, 0 0 0 4.5px var(--bic-input-focus-shadow-color));
2237
- outline: var(--_bi--focus, 3px solid var(--bic-input-focus-outline-color));
2238
- outline-offset: var(--_bi--focus, 3px);
2346
+ .bi-footer .bi-footer--accreditations .bi-footer--equis:is([data-dark="true"] .bi-footer--equis) {
2347
+ background-image: url("./assets/accreditations/equis-neg.svg");
2239
2348
  }
2240
2349
 
2241
- :is(.bi-input[type="checkbox"], .bi-input[type="radio"]):focus-visible * {
2242
- --_bi--focus: ;
2350
+ .bi-footer .bi-footer--socials {
2351
+ justify-content: center;
2352
+ align-items: center;
2353
+ gap: var(--bi-scale-8x);
2354
+ flex-wrap: wrap;
2355
+ display: flex;
2243
2356
  }
2244
2357
 
2245
- :is(.bi-input[type="checkbox"], .bi-input[type="radio"]):read-only:not([readonly], [aria-disabled="true"], :disabled) {
2246
- cursor: pointer;
2358
+ @media (width < 600px) {
2359
+ .bi-footer .bi-footer--socials {
2360
+ gap: var(--bi-scale-2x);
2361
+ }
2247
2362
  }
2248
2363
 
2249
- :is(.bi-input[type="checkbox"], .bi-input[type="radio"])[type="radio"] {
2250
- border-radius: var(--bi-radius-full);
2364
+ .bi-footer .bi-footer--copyright {
2365
+ text-align: center;
2366
+ margin: 0;
2367
+ font-family: museo-slab, serif;
2368
+ font-size: 1rem;
2369
+ font-weight: 500;
2370
+ line-height: 1.5;
2251
2371
  }
2252
2372
 
2253
- :is(.bi-input[type="checkbox"], .bi-input[type="radio"])[type="radio"]:before {
2254
- content: "";
2255
- background-color: var(--bic-input-toggle-background);
2256
- border-radius: 100%;
2257
- width: 0;
2258
- height: 0;
2259
- transition: width .1s ease-in-out, height .1s ease-in-out;
2260
- display: block;
2261
- position: absolute;
2262
- top: 50%;
2263
- left: 50%;
2264
- transform: translate(-50%, -50%);
2373
+ svg {
2374
+ --bic-icon-size: inherit;
2375
+ font-size: var(--bic-icon-size);
2376
+ display: inline-block;
2265
2377
  }
2266
2378
 
2267
- :is(.bi-input[type="checkbox"], .bi-input[type="radio"])[type="radio"]:checked {
2268
- --bic-input-border-color: var(--bic-input-toggle-background);
2379
+ svg[data-size="2xl"] {
2380
+ --bic-icon-size: var(--bi-icon-2xl) !important;
2269
2381
  }
2270
2382
 
2271
- :is(.bi-input[type="checkbox"], .bi-input[type="radio"])[type="radio"]:checked:before {
2272
- width: 12px;
2273
- height: 12px;
2383
+ svg[data-size="xl"] {
2384
+ --bic-icon-size: var(--bi-icon-xl) !important;
2274
2385
  }
2275
2386
 
2276
- :is(.bi-input[type="checkbox"], .bi-input[type="radio"])[type="checkbox"]:not([role="switch"]) {
2277
- border-radius: var(--bi-radius-small);
2278
- place-content: center;
2279
- display: grid;
2387
+ svg[data-size="large"] {
2388
+ --bic-icon-size: var(--bi-icon-large) !important;
2280
2389
  }
2281
2390
 
2282
- :is(.bi-input[type="checkbox"], .bi-input[type="radio"])[type="checkbox"]:not([role="switch"]):before {
2283
- content: "";
2284
- width: .7em;
2285
- height: .7em;
2286
- box-shadow: inset 1em 1em var(--bic-input-toggle-color);
2287
- transform-origin: center;
2288
- clip-path: polygon(9.73% 39.66%, 0% 49.25%, 34.81% 84.58%, 100% 20%, 90.45% 10.31%, 34.81% 65.12%);
2289
- transition: transform .2s ease-in-out;
2290
- transform: scale(0);
2391
+ svg[data-size="medium"] {
2392
+ --bic-icon-size: var(--bi-icon-medium) !important;
2291
2393
  }
2292
2394
 
2293
- :is(.bi-input[type="checkbox"], .bi-input[type="radio"])[type="checkbox"]:not([role="switch"]):where(:checked, :indeterminate) {
2294
- background: var(--bic-input-toggle-background);
2295
- --bic-input-border-color: var(--bic-input-toggle-background);
2395
+ svg[data-size="small"] {
2396
+ --bic-icon-size: var(--bi-icon-small) !important;
2296
2397
  }
2297
2398
 
2298
- :is(.bi-input[type="checkbox"], .bi-input[type="radio"])[type="checkbox"]:not([role="switch"]):where(:checked, :indeterminate):before {
2299
- transform: scale(1);
2399
+ svg[data-color="inherit"] {
2400
+ color: inherit;
2300
2401
  }
2301
2402
 
2302
- :is(.bi-input[type="checkbox"], .bi-input[type="radio"])[type="checkbox"]:not([role="switch"]):indeterminate:before {
2303
- clip-path: polygon(0% 42%, 0% 58%, 100% 58%, 100% 42%);
2403
+ svg[data-color="primary"] {
2404
+ color: #01417b;
2304
2405
  }
2305
2406
 
2306
- :is(.bi-input[type="checkbox"], .bi-input[type="radio"])[type="checkbox"][role="switch"] {
2307
- --_bic-input-circle-position-x: var(--bi-scale-0-50x);
2308
- background: var(--bi-neutral-50);
2407
+ svg[data-color="gray"] {
2408
+ color: #1c1b1b;
2309
2409
  }
2310
2410
 
2311
- :is(.bi-input[type="checkbox"], .bi-input[type="radio"])[type="checkbox"][role="switch"]:where(:checked) {
2312
- --_bic-input-circle-position-x: calc(100% - var(--bi-scale-0-50x));
2313
- background: var(--bic-input-toggle-background);
2314
- --bic-input-border-color: var(--bic-input-toggle-background);
2411
+ svg[data-color="black"] {
2412
+ color: var(--bi-basic-key);
2315
2413
  }
2316
2414
 
2317
- :is(.bi-input[type="checkbox"], .bi-input[type="radio"])[type="checkbox"][role="switch"] {
2318
- background-image: radial-gradient(circle closest-side, var(--bi-basic-white) 95%, transparent 100%);
2319
- background-origin: content-box;
2320
- background-position: var(--_bic-input-circle-position-x);
2321
- background-repeat: no-repeat;
2322
- background-size: calc(var(--bic-input-toggle-size)) 100%;
2323
- border-radius: var(--bi-radius-full);
2324
- width: var(--bi-scale-11x);
2325
- height: var(--bi-scale-6x);
2326
- padding-inline: 0;
2327
- transition: background-position .2s;
2415
+ svg[data-color="white"] {
2416
+ color: var(--bi-basic-white);
2328
2417
  }
2329
2418
 
2330
2419
  .bi-label {
@@ -2624,94 +2713,6 @@ svg[data-color="white"] {
2624
2713
  background-color: var(--bic-pagination-selected-background);
2625
2714
  }
2626
2715
 
2627
- .bi-popover {
2628
- --bic-popover-arrow-size: var(--bi-scale-3x);
2629
- --bic-popover-background: var(--bi-basic-white);
2630
- --bic-popover-border-width: var(--bi-stroke-thin);
2631
- --bic-popover-border-style: solid;
2632
- --bic-popover-border-color: var(--bi-neutral-15);
2633
- --bic-popover-color: var(--bi-neutral-90);
2634
- --bic-popover-border-radius: var(--bi-radius-medium);
2635
- --bic-popover-max-width: 300px;
2636
- --bic-popover-padding: var(--bi-scale-1x);
2637
- --bic-popover-box-shadow: 0px 8px 16px -4px #26333f14, 4px 4px 6px -2px #26333f08,
2638
- 0px 2px 2px -1px #26333f0a;
2639
- }
2640
-
2641
- .bi-popover[data-dark="true"] {
2642
- --bic-popover-background: var(--bi-neutral-95);
2643
- --bic-popover-border-color: var(--bi-neutral-70);
2644
- --bic-popover-color: var(--bi-neutral-5);
2645
- --bic-popover-box-shadow: 0px 8px 16px -4px #26333f14, 4px 4px 6px -2px #26333f08,
2646
- 0px 2px 2px -1px #26333f0a;
2647
- }
2648
-
2649
- .bi-popover {
2650
- background: var(--bic-popover-background);
2651
- border-radius: var(--bic-popover-border-radius);
2652
- border-width: var(--bic-popover-border-width);
2653
- border-style: var(--bic-popover-border-style);
2654
- border-color: var(--bic-popover-border-color);
2655
- box-shadow: var(--bic-popover-box-shadow);
2656
- box-sizing: border-box;
2657
- color: var(--bic-popover-color);
2658
- max-width: var(--bic-popover-max-width);
2659
- padding: var(--bic-popover-padding);
2660
- z-index: 100000;
2661
- display: none;
2662
- position: fixed;
2663
- inset: 0 auto auto 0;
2664
- overflow: visible;
2665
- }
2666
-
2667
- .bi-popover[aria-hidden="false"] {
2668
- display: block;
2669
- }
2670
-
2671
- .bi-popover[data-arrow="true"]:before {
2672
- background: var(--bic-popover-background);
2673
- border: inherit;
2674
- box-sizing: border-box;
2675
- content: "";
2676
- height: var(--bic-popover-arrow-size);
2677
- left: var(--bic-popover-arrow-x);
2678
- top: var(--bic-popover-arrow-y);
2679
- width: var(--bic-popover-arrow-size);
2680
- border-top-color: #0000;
2681
- border-left-color: #0000;
2682
- position: absolute;
2683
- translate: -50% -50%;
2684
- }
2685
-
2686
- .bi-popover[data-arrow="true"][data-placement="top"]:before {
2687
- rotate: 45deg;
2688
- }
2689
-
2690
- .bi-popover[data-arrow="true"][data-placement="left"]:before {
2691
- rotate: -45deg;
2692
- }
2693
-
2694
- .bi-popover[data-arrow="true"][data-placement="right"]:before {
2695
- rotate: 135deg;
2696
- }
2697
-
2698
- .bi-popover[data-arrow="true"][data-placement="bottom"]:before {
2699
- rotate: -135deg;
2700
- }
2701
-
2702
- [data-popover="inline"] {
2703
- all: unset;
2704
- cursor: pointer;
2705
- text-underline-offset: .27em;
2706
- font-size: inherit;
2707
- -webkit-text-decoration: underline dotted;
2708
- text-decoration: underline dotted;
2709
- }
2710
-
2711
- [data-popover="inline"]:not([hidden]) {
2712
- display: inline;
2713
- }
2714
-
2715
2716
  .bi-search:has(:focus-visible) .bi-field--affix:first-child {
2716
2717
  color: var(--bi-primary-50);
2717
2718
  }
@@ -2766,6 +2767,7 @@ svg[data-color="white"] {
2766
2767
  width: 1em;
2767
2768
  height: 1em;
2768
2769
  animation: 1s linear infinite bi-spinner;
2770
+ display: inline-block;
2769
2771
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 4px), #000 0);
2770
2772
  mask: radial-gradient(farthest-side, #0000 calc(100% - 4px), #000 0);
2771
2773
  }