Plugin Directory

Changeset 2821268


Ignore:
Timestamp:
11/21/2022 04:47:59 AM (3 years ago)
Author:
latracal
Message:

1.4.0

Location:
grigora-kit
Files:
209 added
47 deleted
12 edited

Legend:

Unmodified
Added
Removed
  • grigora-kit/trunk/assets/css/editor.css

    r2806304 r2821268  
    10041004  padding-bottom: 15px;
    10051005}
     1006.grigora-color-input:first-child {
     1007  padding-top: 15px;
     1008}
    10061009.grigora-color-input .grigora-color-input__label {
    10071010  height: 24px;
     
    10161019  padding: 10px;
    10171020  border: 1px solid #e0e0e0;
     1021  justify-content: space-between;
     1022}
     1023.grigora-color-input__colorselect .inner {
     1024  display: inline-flex;
     1025  align-items: center;
     1026  gap: 16px;
    10181027}
    10191028.grigora-color-input__popover .components-popover__content {
     
    13251334.grigora-kit-gradient-popover-contents .components-custom-gradient-picker__control-point-button {
    13261335  padding: 6px 6px;
     1336}
     1337
     1338.grigora-pattern-import-btn {
     1339  color: #b708b5 !important;
     1340  border: 1px solid #b708b5;
     1341  background-color: white !important;
     1342  margin-left: 5px;
     1343  margin-right: 5px;
     1344  transition: 0.3s;
     1345}
     1346.grigora-pattern-import-btn:hover {
     1347  color: white !important;
     1348  border: 1px solid #b708b5;
     1349  background-color: #b708b5 !important;
     1350}
     1351
     1352.grigora-patterns-modal {
     1353  display: none;
     1354}
     1355
     1356.grigora-patterns-modal-open .grigora-patterns-modal {
     1357  display: flex;
     1358}
     1359
     1360@keyframes pattern-loading {
     1361  to {
     1362    background-position-x: -20%;
     1363  }
     1364}
     1365@keyframes rotation {
     1366  0% {
     1367    transform: rotate(0deg);
     1368  }
     1369  100% {
     1370    transform: rotate(360deg);
     1371  }
     1372}
     1373@keyframes rotationBack {
     1374  0% {
     1375    transform: rotate(0deg);
     1376  }
     1377  100% {
     1378    transform: rotate(-360deg);
     1379  }
     1380}
     1381.grigora-patterns-modal {
     1382  width: 100%;
     1383  height: 100%;
     1384  position: absolute;
     1385  top: 0;
     1386  left: 0;
     1387  bottom: 0;
     1388  right: 0;
     1389  background: #F0F2F4;
     1390  flex-direction: column;
     1391  overflow: hidden;
     1392}
     1393.grigora-patterns-modal .header-g {
     1394  display: flex;
     1395  width: 100%;
     1396  background-color: white;
     1397  height: 60px;
     1398  justify-content: space-between;
     1399  border-bottom: 1px solid #dddada;
     1400}
     1401.grigora-patterns-modal .header-g .left {
     1402  display: flex;
     1403  align-items: center;
     1404  justify-content: center;
     1405  gap: 10px;
     1406  font-weight: 500;
     1407  font-size: 15px;
     1408  line-height: 18px;
     1409  padding: 8px 15px 8px 15px;
     1410  cursor: default;
     1411}
     1412.grigora-patterns-modal .header-g .left img {
     1413  height: 100%;
     1414  filter: invert(11%) sepia(99%) saturate(6314%) hue-rotate(279deg) brightness(91%) contrast(111%);
     1415}
     1416.grigora-patterns-modal .header-g .center {
     1417  display: flex;
     1418  display: flex;
     1419  align-items: center;
     1420  justify-content: center;
     1421  gap: 10px;
     1422  font-size: 15px;
     1423  line-height: 18px;
     1424  padding: 8px 15px 8px 15px;
     1425  cursor: default;
     1426}
     1427.grigora-patterns-modal .header-g .right {
     1428  display: flex;
     1429  align-items: center;
     1430  justify-content: center;
     1431}
     1432.grigora-patterns-modal .header-g .right .close {
     1433  display: flex;
     1434  height: 100%;
     1435  gap: 10px;
     1436  font-weight: 500;
     1437  font-size: 15px;
     1438  line-height: 18px;
     1439  padding: 18px;
     1440  cursor: pointer;
     1441  transition: 0.3s;
     1442}
     1443.grigora-patterns-modal .header-g .right .close:hover {
     1444  background-color: #F9F4F9;
     1445}
     1446.grigora-patterns-modal .header-g .right .close svg {
     1447  height: 100%;
     1448  width: 100%;
     1449}
     1450.grigora-patterns-modal .body {
     1451  display: flex;
     1452  flex: 1;
     1453  width: 100%;
     1454}
     1455.grigora-patterns-modal .body .sidebar {
     1456  display: flex;
     1457  background-color: white;
     1458  width: 250px;
     1459  height: 100%;
     1460  padding: 20px;
     1461  flex-direction: column;
     1462  border-right: 1px solid #dddada;
     1463  gap: 30px;
     1464}
     1465.grigora-patterns-modal .body .sidebar .title {
     1466  font-size: 14px;
     1467  font-weight: 700;
     1468  color: #4c4c4c;
     1469  cursor: default;
     1470}
     1471.grigora-patterns-modal .body .sidebar .categories {
     1472  display: flex;
     1473  gap: 12px;
     1474  flex-direction: column;
     1475}
     1476.grigora-patterns-modal .body .sidebar .select-category {
     1477  font-size: 14px;
     1478  color: #7c7c7c;
     1479  display: flex;
     1480  justify-content: space-between;
     1481  cursor: pointer;
     1482}
     1483.grigora-patterns-modal .body .sidebar .select-category:hover {
     1484  color: #9505E8;
     1485}
     1486.grigora-patterns-modal .body .sidebar .select-category.active {
     1487  color: #9505E8;
     1488}
     1489.grigora-patterns-modal .body .patterns-parent {
     1490  width: 100%;
     1491  padding: 3rem 2rem 4rem 2rem;
     1492  overflow-x: hidden;
     1493  overflow-y: scroll;
     1494  height: calc(100vh - 60px);
     1495}
     1496.grigora-patterns-modal .body .patterns-parent::-webkit-scrollbar {
     1497  height: 6px;
     1498  width: 6px;
     1499}
     1500.grigora-patterns-modal .body .patterns-parent::-webkit-scrollbar-track {
     1501  border-radius: 10px;
     1502  background: rgba(0, 0, 0, 0);
     1503}
     1504.grigora-patterns-modal .body .patterns-parent::-webkit-scrollbar-thumb {
     1505  border-radius: 10px;
     1506  background: rgba(0, 0, 0, 0.2);
     1507}
     1508.grigora-patterns-modal .body .patterns-parent::-webkit-scrollbar-thumb:hover {
     1509  background: rgba(0, 0, 0, 0.4);
     1510}
     1511.grigora-patterns-modal .body .patterns-parent::-webkit-scrollbar-thumb:active {
     1512  background: rgba(0, 0, 0, 0.9);
     1513}
     1514.grigora-patterns-modal .body .select-pattern {
     1515  display: inline-block;
     1516  page-break-inside: avoid;
     1517  -moz-column-break-inside: avoid;
     1518  break-inside: avoid;
     1519  width: 100%;
     1520  position: relative;
     1521  box-shadow: 0px 0px 15px rgba(33, 33, 33, 0.41);
     1522}
     1523.grigora-patterns-modal .body .select-pattern.loading {
     1524  height: 255px;
     1525  background-color: #ededed;
     1526  background: linear-gradient(100deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 60%) #ededed;
     1527  background-size: 200% 100%;
     1528  background-position-x: 180%;
     1529  animation: 1s pattern-loading ease-in-out infinite;
     1530}
     1531.grigora-patterns-modal .body .select-pattern .thumbnail {
     1532  display: flex;
     1533}
     1534.grigora-patterns-modal .body .select-pattern .thumbnail img {
     1535  width: 100%;
     1536}
     1537.grigora-patterns-modal .body .select-pattern .overlay {
     1538  position: absolute;
     1539  top: 0;
     1540  bottom: 0;
     1541  left: 0;
     1542  right: 0;
     1543  gap: 10px;
     1544  display: none;
     1545  justify-content: center;
     1546  align-items: center;
     1547}
     1548.grigora-patterns-modal .body .select-pattern .overlay .import {
     1549  padding: 15px;
     1550  background: white;
     1551  height: 20px;
     1552  display: flex;
     1553  justify-content: center;
     1554  align-items: center;
     1555  border-radius: 2px;
     1556  cursor: pointer;
     1557  transition: 0.3s;
     1558  color: #4c4c4c;
     1559}
     1560.grigora-patterns-modal .body .select-pattern .overlay .import:hover {
     1561  background-color: #eae1f0;
     1562}
     1563.grigora-patterns-modal .body .select-pattern .overlay .preview {
     1564  padding: 15px;
     1565  background: white;
     1566  height: 20px;
     1567  display: flex;
     1568  justify-content: center;
     1569  align-items: center;
     1570  border-radius: 2px;
     1571  cursor: pointer;
     1572  transition: 0.3s;
     1573  text-decoration: none;
     1574  color: #4c4c4c;
     1575}
     1576.grigora-patterns-modal .body .select-pattern .overlay .preview:hover {
     1577  background-color: #eae1f0;
     1578}
     1579.grigora-patterns-modal .body .select-pattern .overlay .loader {
     1580  display: none;
     1581}
     1582.grigora-patterns-modal .body .select-pattern.active .overlay {
     1583  display: flex;
     1584  background-color: rgba(78, 78, 78, 0.5490196078);
     1585}
     1586.grigora-patterns-modal .body .select-pattern.active .import, .grigora-patterns-modal .body .select-pattern.active .preview {
     1587  display: none;
     1588}
     1589.grigora-patterns-modal .body .select-pattern.active .loader {
     1590  width: 48px;
     1591  height: 48px;
     1592  border-radius: 50%;
     1593  display: inline-block;
     1594  position: relative;
     1595  border: 3px solid;
     1596  border-color: #FFF #FFF transparent transparent;
     1597  box-sizing: border-box;
     1598  animation: rotation 1s linear infinite;
     1599}
     1600.grigora-patterns-modal .body .select-pattern.active .loader::after,
     1601.grigora-patterns-modal .body .select-pattern.active .loader::before {
     1602  content: "";
     1603  box-sizing: border-box;
     1604  position: absolute;
     1605  left: 0;
     1606  right: 0;
     1607  top: 0;
     1608  bottom: 0;
     1609  margin: auto;
     1610  border: 3px solid;
     1611  border-color: transparent transparent #6e1057 #ca6fb3;
     1612  width: 40px;
     1613  height: 40px;
     1614  border-radius: 50%;
     1615  box-sizing: border-box;
     1616  animation: rotationBack 0.5s linear infinite;
     1617  transform-origin: center center;
     1618}
     1619.grigora-patterns-modal .body .select-pattern.active .loader::before {
     1620  width: 32px;
     1621  height: 32px;
     1622  border-color: #FFF #FFF transparent transparent;
     1623  animation: rotation 1.5s linear infinite;
     1624}
     1625.grigora-patterns-modal .body .select-pattern:hover .overlay {
     1626  display: flex;
     1627  background-color: rgba(78, 78, 78, 0.5490196078);
    13271628}
    13281629
  • grigora-kit/trunk/assets/css/editor.min.css

    r2806304 r2821268  
    1 @keyframes bounce{from,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);-webkit-transform:translate3d(0, -30px, 0) scaleY(1.1);transform:translate3d(0, -30px, 0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);-webkit-transform:translate3d(0, -15px, 0) scaleY(1.05);transform:translate3d(0, -15px, 0) scaleY(1.05)}80%{-webkit-transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);-webkit-transform:translate3d(0, 0, 0) scaleY(0.95);transform:translate3d(0, 0, 0) scaleY(0.95)}90%{-webkit-transform:translate3d(0, -4px, 0) scaleY(1.02);transform:translate3d(0, -4px, 0) scaleY(1.02)}}@keyframes flash{from,50%,to{opacity:1}25%,75%{opacity:0}}@keyframes pulse{from{-webkit-transform:scale3d(1, 1, 1);transform:scale3d(1, 1, 1)}50%{-webkit-transform:scale3d(1.05, 1.05, 1.05);transform:scale3d(1.05, 1.05, 1.05)}to{-webkit-transform:scale3d(1, 1, 1);transform:scale3d(1, 1, 1)}}@keyframes rubberBand{from{-webkit-transform:scale3d(1, 1, 1);transform:scale3d(1, 1, 1)}30%{-webkit-transform:scale3d(1.25, 0.75, 1);transform:scale3d(1.25, 0.75, 1)}40%{-webkit-transform:scale3d(0.75, 1.25, 1);transform:scale3d(0.75, 1.25, 1)}50%{-webkit-transform:scale3d(1.15, 0.85, 1);transform:scale3d(1.15, 0.85, 1)}65%{-webkit-transform:scale3d(0.95, 1.05, 1);transform:scale3d(0.95, 1.05, 1)}75%{-webkit-transform:scale3d(1.05, 0.95, 1);transform:scale3d(1.05, 0.95, 1)}to{-webkit-transform:scale3d(1, 1, 1);transform:scale3d(1, 1, 1)}}@keyframes shakeX{from,to{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px, 0, 0);transform:translate3d(-10px, 0, 0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px, 0, 0);transform:translate3d(10px, 0, 0)}}@keyframes shakeY{from,to{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(0, -10px, 0);transform:translate3d(0, -10px, 0)}20%,40%,60%,80%{-webkit-transform:translate3d(0, 10px, 0);transform:translate3d(0, 10px, 0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes swing{20%{-webkit-transform:rotate3d(0, 0, 1, 15deg);transform:rotate3d(0, 0, 1, 15deg)}40%{-webkit-transform:rotate3d(0, 0, 1, -10deg);transform:rotate3d(0, 0, 1, -10deg)}60%{-webkit-transform:rotate3d(0, 0, 1, 5deg);transform:rotate3d(0, 0, 1, 5deg)}80%{-webkit-transform:rotate3d(0, 0, 1, -5deg);transform:rotate3d(0, 0, 1, -5deg)}to{-webkit-transform:rotate3d(0, 0, 1, 0deg);transform:rotate3d(0, 0, 1, 0deg)}}@keyframes tada{from{-webkit-transform:scale3d(1, 1, 1);transform:scale3d(1, 1, 1)}10%,20%{-webkit-transform:scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);transform:scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);transform:scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);transform:scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)}to{-webkit-transform:scale3d(1, 1, 1);transform:scale3d(1, 1, 1)}}@keyframes wobble{from{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}15%{-webkit-transform:translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);transform:translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)}30%{-webkit-transform:translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);transform:translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)}45%{-webkit-transform:translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);transform:translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)}60%{-webkit-transform:translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);transform:translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)}75%{-webkit-transform:translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);transform:translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)}to{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}}@keyframes jello{from,11.1%,to{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-0.78125deg) skewY(-0.78125deg);transform:skewX(-0.78125deg) skewY(-0.78125deg)}77.7%{-webkit-transform:skewX(0.390625deg) skewY(0.390625deg);transform:skewX(0.390625deg) skewY(0.390625deg)}88.8%{-webkit-transform:skewX(-0.1953125deg) skewY(-0.1953125deg);transform:skewX(-0.1953125deg) skewY(-0.1953125deg)}}@keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes backInUp{0%{transform:translateY(1200px) scale(0.7);opacity:.7}80%{transform:translateY(0px) scale(0.7);opacity:.7}100%{transform:scale(1);opacity:1}}@keyframes backInRight{0%{transform:translateX(2000px) scale(0.7);opacity:.7}80%{transform:translateX(0px) scale(0.7);opacity:.7}100%{transform:scale(1);opacity:1}}@keyframes backInLeft{0%{transform:translateX(-2000px) scale(0.7);opacity:.7}80%{transform:translateX(0px) scale(0.7);opacity:.7}100%{transform:scale(1);opacity:1}}@keyframes backInDown{0%{transform:translateY(-1200px) scale(0.7);opacity:.7}80%{transform:translateY(0px) scale(0.7);opacity:.7}100%{transform:scale(1);opacity:1}}@keyframes bounceIn{from,20%,40%,60%,80%,to{animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;transform:scale3d(0.3, 0.3, 0.3)}20%{transform:scale3d(1.1, 1.1, 1.1)}40%{transform:scale3d(0.9, 0.9, 0.9)}60%{opacity:1;transform:scale3d(1.03, 1.03, 1.03)}80%{transform:scale3d(0.97, 0.97, 0.97)}to{opacity:1;transform:scale3d(1, 1, 1)}}@keyframes bounceInDown{from,60%,75%,90%,to{animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;transform:translate3d(0, -3000px, 0) scaleY(3)}60%{opacity:1;transform:translate3d(0, 25px, 0) scaleY(0.9)}75%{transform:translate3d(0, -10px, 0) scaleY(0.95)}90%{transform:translate3d(0, 5px, 0) scaleY(0.985)}to{transform:translate3d(0, 0, 0)}}@keyframes bounceInLeft{from,60%,75%,90%,to{animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;transform:translate3d(-3000px, 0, 0) scaleX(3)}60%{opacity:1;transform:translate3d(25px, 0, 0) scaleX(1)}75%{transform:translate3d(-10px, 0, 0) scaleX(0.98)}90%{transform:translate3d(5px, 0, 0) scaleX(0.995)}to{transform:translate3d(0, 0, 0)}}@keyframes bounceInRight{from,60%,75%,90%,to{animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}from{opacity:0;transform:translate3d(3000px, 0, 0) scaleX(3)}60%{opacity:1;transform:translate3d(-25px, 0, 0) scaleX(1)}75%{transform:translate3d(10px, 0, 0) scaleX(0.98)}90%{transform:translate3d(-5px, 0, 0) scaleX(0.995)}to{transform:translate3d(0, 0, 0)}}@keyframes bounceInUp{from,60%,75%,90%,to{animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}from{opacity:0;transform:translate3d(0, 3000px, 0) scaleY(5)}60%{opacity:1;transform:translate3d(0, -20px, 0) scaleY(0.9)}75%{transform:translate3d(0, 10px, 0) scaleY(0.95)}90%{transform:translate3d(0, -5px, 0) scaleY(0.985)}to{transform:translate3d(0, 0, 0)}}@keyframes fadeIn{from{opacity:0}to{opacity:1}}@keyframes fadeInBottomLeft{from{opacity:0;transform:translate3d(-100%, 100%, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}@keyframes fadeInBottomRight{from{opacity:0;transform:translate3d(100%, 100%, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}@keyframes fadeInDown{from{opacity:0;transform:translate3d(0, -100%, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}@keyframes fadeInDownBig{from{opacity:0;transform:translate3d(0, -2000px, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}@keyframes fadeInLeft{from{opacity:0;transform:translate3d(-100%, 0, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}@keyframes fadeInLeftBig{from{opacity:0;transform:translate3d(-2000px, 0, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}@keyframes fadeInRight{from{opacity:0;transform:translate3d(100%, 0, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}@keyframes fadeInRightBig{from{opacity:0;transform:translate3d(2000px, 0, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}@keyframes fadeInTopLeft{from{opacity:0;transform:translate3d(-100%, -100%, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}@keyframes fadeInTopRight{from{opacity:0;transform:translate3d(100%, -100%, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}@keyframes fadeInUp{from{opacity:0;transform:translate3d(0, 100%, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}@keyframes fadeInUpBig{from{opacity:0;transform:translate3d(0, 2000px, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}@keyframes rotateIn{from{transform:rotate3d(0, 0, 1, -200deg);opacity:0}to{transform:translate3d(0, 0, 0);opacity:1}}@keyframes rotateInDownLeft{from{transform:rotate3d(0, 0, 1, -45deg);opacity:0}to{transform:translate3d(0, 0, 0);opacity:1}}@keyframes rotateInDownRight{from{transform:rotate3d(0, 0, 1, 45deg);opacity:0}to{transform:translate3d(0, 0, 0);opacity:1}}@keyframes rotateInUpLeft{from{transform:rotate3d(0, 0, 1, 45deg);opacity:0}to{transform:translate3d(0, 0, 0);opacity:1}}@keyframes rotateInUpRight{from{transform:rotate3d(0, 0, 1, -90deg);opacity:0}to{transform:translate3d(0, 0, 0);opacity:1}}.has-entrance-animation{visibility:hidden;animation-name:none !important}.group-alignment-toolbar{width:100%}.group-alignment-toolbar .inner-btn{flex:1;justify-content:center}.grigora-multiselect-input{width:100%}.grigora-multiselect-input .grigora-multiselect-input__label{height:24px;display:flex;align-items:center}.grigora-datetime-input{width:100%}.grigora-datetime-input .grigora-datetime-input__label{height:24px;display:flex;align-items:center}.grigora-datetime-input__popover .components-popover__content{padding:8px 15px;width:300px;-ms-overflow-style:none;scrollbar-width:none}.grigora-datetime-input__popover .components-popover__content::-webkit-scrollbar{display:none}.group-alignment-toolbar-label{margin-bottom:0px;height:24px}.components-panel[is-grigora-sidebar] .block-editor-block-card{background-color:#f9f4f9}.components-panel[is-grigora-sidebar] .components-panel__body.block-editor-block-inspector__advanced{display:none;border-top:0px}.components-panel[grigora-sidebar-selected-index="2"] .components-panel__body.block-editor-block-inspector__advanced{display:block}.components-panel[is-grigora-sidebar] .components-panel__body.motion_effects_panel,.components-panel[is-grigora-sidebar] .components-panel__body.sticky_panel,.components-panel[is-grigora-sidebar] .components-panel__body.position_panel,.components-panel[is-grigora-sidebar] .components-panel__body.responsive_panel{display:none}.components-panel[is-grigora-sidebar] .components-panel__body.motion_effects_panel{border-top:0px}.components-panel[grigora-sidebar-selected-index="2"] .components-panel__body.motion_effects_panel,.components-panel[grigora-sidebar-selected-index="2"] .components-panel__body.sticky_panel,.components-panel[grigora-sidebar-selected-index="2"] .components-panel__body.position_panel,.components-panel[grigora-sidebar-selected-index="2"] .components-panel__body.responsive_panel{display:block}.grigora-notice{padding:15px;font-size:13px;line-height:1.5;text-align:left;margin-bottom:20px}.grigora-notice.status-success{color:#4e9b41;background-color:#e3f8e2;border-left:5px solid #c8f8ca}.grigora-notice.status-warning{color:#9b9a41;background-color:#f6f8e2;border-left:5px solid #e9e8b4}.grigora-notice.status-info{color:#41739c;background-color:#e4f3ff;border-left:5px solid #c6e3fb}.grigora-tabs-container .tabs-header{display:flex;background-color:#f9f4f9;margin-top:0;margin-bottom:0}.grigora-tabs-container .tabs-header .general,.grigora-tabs-container .tabs-header .styles,.grigora-tabs-container .tabs-header .advanced{flex:1;display:flex;justify-content:center;align-items:center;background-color:#f9f4f9;border-top-left-radius:5px;border-top-right-radius:5px;font-weight:500;margin-bottom:0px;cursor:pointer;flex-direction:column;padding-top:10px;padding-bottom:10px;gap:5px;color:#585858;border:1px solid rgba(0,0,0,0);border-bottom:1px solid #dbd9d9}.grigora-tabs-container .tabs-header .general:hover,.grigora-tabs-container .tabs-header .styles:hover,.grigora-tabs-container .tabs-header .advanced:hover{background-color:#f9f9f9}.grigora-tabs-container .tabs-header .general.react-tabs__tab--selected{background-color:#fff;border-top-left-radius:5px;border-top-right-radius:5px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;border:1px solid #dbd9d9;border-bottom:1px solid rgba(0,0,0,0);color:#9505e8}.grigora-tabs-container .tabs-header .styles.react-tabs__tab--selected{background-color:#fff;border-top-left-radius:5px;border-top-right-radius:5px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;border:1px solid #dbd9d9;border-bottom:1px solid rgba(0,0,0,0);color:#9505e8}.grigora-tabs-container .tabs-header .advanced.react-tabs__tab--selected{background-color:#fff;border-top-left-radius:5px;border-top-right-radius:5px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;border:1px solid #dbd9d9;border-bottom:1px solid rgba(0,0,0,0);color:#9505e8}.grigora-tabs-container .components-panel__body:first-child{border-top:0px}.grigora-normal-hover-tabs-container .tabs-header{display:flex;background-color:#f9f4f9}.grigora-normal-hover-tabs-container .tabs-header .normal,.grigora-normal-hover-tabs-container .tabs-header .hover{flex:1;display:flex;justify-content:center;align-items:center;background-color:#fff;border-top-left-radius:5px;border-top-right-radius:5px;font-weight:500;margin-bottom:0px;cursor:pointer;flex-direction:column;padding-top:5px;padding-bottom:5px;gap:5px;color:#585858;border:1px solid #e0e0e0}.grigora-normal-hover-tabs-container .tabs-header .normal:hover,.grigora-normal-hover-tabs-container .tabs-header .hover:hover{background-color:#f9f9f9}.grigora-normal-hover-tabs-container .tabs-header .normal{border-top-left-radius:5px;border-top-right-radius:0px;border-bottom-left-radius:5px;border-bottom-right-radius:0px}.grigora-normal-hover-tabs-container .tabs-header .hover{border-top-left-radius:0px;border-top-right-radius:5px;border-bottom-left-radius:0px;border-bottom-right-radius:5px}.grigora-normal-hover-tabs-container .tabs-header .normal.react-tabs__tab--selected{background-color:#f9f4f9;border:1px solid #9505e8;color:#9505e8}.grigora-normal-hover-tabs-container .tabs-header .hover.react-tabs__tab--selected{background-color:#f9f4f9;border:1px solid #9505e8;color:#9505e8}.grigora-normal-hover-tabs-container .components-panel__body:first-child{border-top:0px}.grigora-normal-hover-active-tabs-container .tabs-header{display:flex;background-color:#f9f4f9}.grigora-normal-hover-active-tabs-container .tabs-header .normal,.grigora-normal-hover-active-tabs-container .tabs-header .hover,.grigora-normal-hover-active-tabs-container .tabs-header .active{flex:1;display:flex;justify-content:center;align-items:center;background-color:#fff;border-top-left-radius:5px;border-top-right-radius:5px;font-weight:500;margin-bottom:0px;cursor:pointer;flex-direction:column;padding-top:5px;padding-bottom:5px;gap:5px;color:#585858;border:1px solid #e0e0e0}.grigora-normal-hover-active-tabs-container .tabs-header .normal:hover,.grigora-normal-hover-active-tabs-container .tabs-header .hover:hover,.grigora-normal-hover-active-tabs-container .tabs-header .active:hover{background-color:#f9f9f9}.grigora-normal-hover-active-tabs-container .tabs-header .normal{border-top-left-radius:5px;border-top-right-radius:0px;border-bottom-left-radius:5px;border-bottom-right-radius:0px}.grigora-normal-hover-active-tabs-container .tabs-header .hover{border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px}.grigora-normal-hover-active-tabs-container .tabs-header .active{border-top-left-radius:0px;border-top-right-radius:5px;border-bottom-left-radius:0px;border-bottom-right-radius:5px}.grigora-normal-hover-active-tabs-container .tabs-header .normal.react-tabs__tab--selected{background-color:#f9f4f9;border:1px solid #9505e8;color:#9505e8}.grigora-normal-hover-active-tabs-container .tabs-header .hover.react-tabs__tab--selected{background-color:#f9f4f9;border:1px solid #9505e8;color:#9505e8}.grigora-normal-hover-active-tabs-container .tabs-header .active.react-tabs__tab--selected{background-color:#f9f4f9;border:1px solid #9505e8;color:#9505e8}.grigora-normal-hover-active-tabs-container .components-panel__body:first-child{border-top:0px}.components-panel__body:last-child{border-bottom:1px solid #e0e0e0}.tab-normal,.tab-hover{width:50%;justify-content:center}.grigora-dropdown-hstack .components-base-control{width:100%;margin-bottom:10px}.grigora-icon-picker .grigora-svg-icon{width:64px;height:64px;display:inline-flex;margin:10px;justify-content:center;align-items:center;align-content:center;border:1px solid #ddd;border-radius:3px}.grigora-icon-picker .grigora-svg-icon:hover{background-color:#eee}.grigora-icon-picker .grigora-svg-icon svg{width:32px;height:32px}.grigora-icon-picker .grigora-svg-icon.active{border:2px solid #8000e9}.grigora-icons-selected-svg{display:flex;justify-content:center;align-items:center;align-content:center;margin:10px}.grigora-icons-selected-svg svg{width:32px;height:32px}.grigora-icons-selected{display:flex;justify-content:space-around}.grigora-inside-panel{border:1px solid #e0e0e0 !important}.grigora-hover-effects-panel .components-base-control__field{justify-content:center}.grigora-icons-panel .dropdown-component-margin-0 .components-base-control{margin-bottom:0px !important}.grigora-icons-panel .dropdown-component-margin-0 .components-base-control .components-base-control__field{margin-bottom:0px !important}.grigora-icons-panel .components-toggle-control .components-base-control__field{justify-content:center}.grigora-icon-picker-modal-overlay .components-modal__frame{width:90vw;height:70vh}.popover-link-controls{padding:16px;padding-top:0px}.grigora-range-input .components-range-control{width:100%;margin-bottom:0px !important}.grigora-range-input .components-range-control .components-base-control__field{margin-bottom:0px !important}.grigora-range-input .components-unit-control-wrapper{width:75px}.grigora-range-input .components-unit-control-wrapper .components-unit-control__unit-label{width:15px !important}.grigora-range-input .grigora-range-input__label{height:24px;display:flex;align-items:center}.grigora-select-input{width:100%}.grigora-select-input .grigora-select-input__label{height:24px;display:flex;align-items:center}.grigora-fontfamily-input{width:100%}.grigora-fontfamily-input .grigora-fontfamily-input__label{height:24px;display:flex;align-items:center}.grigora-color-input{width:100%;padding-bottom:15px}.grigora-color-input .grigora-color-input__label{height:24px;display:flex;align-items:center}.grigora-color-input__colorselect{display:inline-flex;align-items:center;gap:16px;width:100%;padding:10px;border:1px solid #e0e0e0}.grigora-color-input__popover .components-popover__content{padding:8px}.grigora-gradient-input{width:100%}.grigora-gradient-input .grigora-gradient-input__label{height:24px;display:flex;align-items:center}.grigora-colorgradient-input{width:100%;padding-bottom:15px}.grigora-colorgradient-input .grigora-colorgradient-input__label{height:24px;display:flex;align-items:center}.grigora-colorgradient-input__colorselect{display:inline-flex;align-items:center;gap:16px;width:100%;padding:10px;border:1px solid #e0e0e0}.grigora-colorgradient-input__popover .components-popover__content{padding:8px;width:250px}.grigora-colorgradient-input__popover .components-popover__content legend{display:none}.grigora-borderbox-input{width:100%}.grigora-borderbox-input .grigora-borderbox-input__label{height:24px;display:flex;align-items:center}.grigora-alignment-input{width:100%}.grigora-alignment-input .grigora-alignment-input__label{height:24px;display:flex;align-items:center}.grigora-alignment-input .alignment-toolbar{width:100%}.grigora-alignment-input .alignment-toolbar .inner-btn{flex:1;justify-content:center}.grigora-typography-input{width:100%}.grigora-typography-input .grigora-typography-input__label{height:24px;display:flex;align-items:center}.grigora-borderradius-input{width:100%}.grigora-borderradius-input .grigora-borderradius-input__label{height:24px;display:flex;align-items:center}.grigora-borderradius-input .grigora-borderradius-input__select legend{display:none}.grigora-borderradius-input .grigora-borderradius-input__hstack{padding-bottom:5px}.grigora-unit-input{width:100%}.grigora-unit-input .grigora-unit-input__label{height:24px;display:flex;align-items:center}.grigora-ltrb-input{width:100%}.grigora-ltrb-input .grigora-ltrb-input__label{height:24px;display:flex;align-items:center}.grigora-ltrb-input .grigora-ltrb-input__top{width:50%;margin:auto}.grigora-ltrb-input .grigora-ltrb-input__bottom{width:50%;margin:auto}.grigora-box-input{width:100%}.grigora-box-input .grigora-box-input__label{height:24px;display:flex;align-items:center}.grigora-box-input .component-box-control__header{display:none}.grigora-box-input .components-h-stack{gap:10px}.grigora-number-input{width:100%}.grigora-number-input .grigora-number-input__label{height:24px;display:flex;align-items:center}.grigora-text-input{width:100%}.grigora-text-input .grigora-text-input__label{height:24px;display:flex;align-items:center}.grigora-toggle-input{width:100%}.grigora-toggle-input .grigora-toggle-input__label{height:24px;display:flex;align-items:center}.grigora-radio-input{width:100%}.grigora-radio-input .grigora-radio-input__label{height:24px;display:flex;align-items:center}.grigora-radio-input__radiobox{text-align:center}.background-selector{text-align:center;margin-top:15px}.grigora-media-select{text-align:center}.grigora-gallery-picker-editor{display:flex;gap:10px;flex-wrap:wrap;justify-content:center;border:1px solid #d7d4d4;padding:5px;border-radius:3px}.grigora-gallery-picker-editor img{display:inline-flex;height:auto;max-width:25%}.grigora-focalpoint-picker-h1ma{margin-top:1rem}.grigora-cssfilter-input__popover .components-popover__content{padding:8px;width:200px;-ms-overflow-style:none;scrollbar-width:none}.grigora-cssfilter-input__popover .components-popover__content::-webkit-scrollbar{display:none}.grigora-cssfilter-input__popover .components-popover__content .grigora-range-input__blur .components-base-control__label{margin-bottom:0px}.grigora-cssfilter-input__popover .components-popover__content .grigora-range-input__brightness .components-base-control__label{margin-bottom:0px}.grigora-cssfilter-input__popover .components-popover__content .grigora-range-input__contrast .components-base-control__label{margin-bottom:0px}.grigora-cssfilter-input__popover .components-popover__content .grigora-range-input__saturation .components-base-control__label{margin-bottom:0px}.grigora-cssfilter-input__popover .components-popover__content .grigora-range-input__hue .components-base-control__label{margin-bottom:0px}.grigora-mousemovement-input__popover .components-popover__content{padding:8px;width:250px;-ms-overflow-style:none;scrollbar-width:none}.grigora-mousemovement-input__popover .components-popover__content::-webkit-scrollbar{display:none}.grigora-mousemovement-input__popover .components-popover__content .grigora-range-input__blur .components-base-control__label{margin-bottom:0px}.grigora-mousemovement-input__popover .components-popover__content .grigora-range-input__brightness .components-base-control__label{margin-bottom:0px}.grigora-mousemovement-input__popover .components-popover__content .grigora-range-input__contrast .components-base-control__label{margin-bottom:0px}.grigora-mousemovement-input__popover .components-popover__content .grigora-range-input__saturation .components-base-control__label{margin-bottom:0px}.grigora-mousemovement-input__popover .components-popover__content .grigora-range-input__hue .components-base-control__label{margin-bottom:0px}.grigora-typography-input__popover .components-popover__content{padding:8px 15px;width:250px;-ms-overflow-style:none;scrollbar-width:none}.grigora-typography-input__popover .components-popover__content::-webkit-scrollbar{display:none}.grigora-typography-input__popover .components-popover__content .grigora-range-input__blur .components-base-control__label{margin-bottom:0px}.grigora-typography-input__popover .components-popover__content .grigora-range-input__brightness .components-base-control__label{margin-bottom:0px}.grigora-typography-input__popover .components-popover__content .grigora-range-input__contrast .components-base-control__label{margin-bottom:0px}.grigora-typography-input__popover .components-popover__content .grigora-range-input__saturation .components-base-control__label{margin-bottom:0px}.grigora-typography-input__popover .components-popover__content .grigora-range-input__hue .components-base-control__label{margin-bottom:0px}.grigora-scrollmovement-input__popover .components-popover__content{width:250px;-ms-overflow-style:none;scrollbar-width:none}.grigora-scrollmovement-input__popover .components-popover__content .inner-section{padding:8px;padding-left:25px;padding-right:25px}.grigora-scrollmovement-input__popover .components-popover__content::-webkit-scrollbar{display:none}.grigora-scrollmovement-input__popover .components-popover__content .grigora-range-input__blur .components-base-control__label{margin-bottom:0px}.grigora-scrollmovement-input__popover .components-popover__content .grigora-range-input__brightness .components-base-control__label{margin-bottom:0px}.grigora-scrollmovement-input__popover .components-popover__content .grigora-range-input__contrast .components-base-control__label{margin-bottom:0px}.grigora-scrollmovement-input__popover .components-popover__content .grigora-range-input__saturation .components-base-control__label{margin-bottom:0px}.grigora-scrollmovement-input__popover .components-popover__content .grigora-range-input__hue .components-base-control__label{margin-bottom:0px}.grigora-kit-gradient-popover-contents{min-width:360px;display:block;padding:30px 20px;display:flex;position:relative}.grigora-kit-gradient-popover-contents .components-custom-gradient-picker__control-point-button{padding:6px 6px}.element-container{position:relative;display:flex;-webkit-box-align:center;align-items:center;width:100%;padding:0 20px;background-color:#fff;border:1px solid #efefef;box-sizing:border-box;user-select:none;color:#333;font-weight:400;height:48px}.main-error-container{border-style:solid;text-align:center;padding:2%}.error-title-container{margin-top:0;margin-bottom:4%}.cursor-events-default{cursor:default}.responsive-control{display:flex;gap:5px;margin-left:5px}.responsive-control .desktop,.responsive-control .tablet,.responsive-control .mobile{display:flex;width:18px;cursor:pointer;align-items:center}.responsive-control .desktop svg,.responsive-control .tablet svg,.responsive-control .mobile svg{color:#979595}.responsive-control .desktop.active svg,.responsive-control .tablet.active svg,.responsive-control .mobile.active svg{color:#9505e8}.responsive-control .mobile svg{height:18px}
     1@keyframes bounce{from,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);-webkit-transform:translate3d(0, -30px, 0) scaleY(1.1);transform:translate3d(0, -30px, 0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);-webkit-transform:translate3d(0, -15px, 0) scaleY(1.05);transform:translate3d(0, -15px, 0) scaleY(1.05)}80%{-webkit-transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);-webkit-transform:translate3d(0, 0, 0) scaleY(0.95);transform:translate3d(0, 0, 0) scaleY(0.95)}90%{-webkit-transform:translate3d(0, -4px, 0) scaleY(1.02);transform:translate3d(0, -4px, 0) scaleY(1.02)}}@keyframes flash{from,50%,to{opacity:1}25%,75%{opacity:0}}@keyframes pulse{from{-webkit-transform:scale3d(1, 1, 1);transform:scale3d(1, 1, 1)}50%{-webkit-transform:scale3d(1.05, 1.05, 1.05);transform:scale3d(1.05, 1.05, 1.05)}to{-webkit-transform:scale3d(1, 1, 1);transform:scale3d(1, 1, 1)}}@keyframes rubberBand{from{-webkit-transform:scale3d(1, 1, 1);transform:scale3d(1, 1, 1)}30%{-webkit-transform:scale3d(1.25, 0.75, 1);transform:scale3d(1.25, 0.75, 1)}40%{-webkit-transform:scale3d(0.75, 1.25, 1);transform:scale3d(0.75, 1.25, 1)}50%{-webkit-transform:scale3d(1.15, 0.85, 1);transform:scale3d(1.15, 0.85, 1)}65%{-webkit-transform:scale3d(0.95, 1.05, 1);transform:scale3d(0.95, 1.05, 1)}75%{-webkit-transform:scale3d(1.05, 0.95, 1);transform:scale3d(1.05, 0.95, 1)}to{-webkit-transform:scale3d(1, 1, 1);transform:scale3d(1, 1, 1)}}@keyframes shakeX{from,to{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px, 0, 0);transform:translate3d(-10px, 0, 0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px, 0, 0);transform:translate3d(10px, 0, 0)}}@keyframes shakeY{from,to{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(0, -10px, 0);transform:translate3d(0, -10px, 0)}20%,40%,60%,80%{-webkit-transform:translate3d(0, 10px, 0);transform:translate3d(0, 10px, 0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes swing{20%{-webkit-transform:rotate3d(0, 0, 1, 15deg);transform:rotate3d(0, 0, 1, 15deg)}40%{-webkit-transform:rotate3d(0, 0, 1, -10deg);transform:rotate3d(0, 0, 1, -10deg)}60%{-webkit-transform:rotate3d(0, 0, 1, 5deg);transform:rotate3d(0, 0, 1, 5deg)}80%{-webkit-transform:rotate3d(0, 0, 1, -5deg);transform:rotate3d(0, 0, 1, -5deg)}to{-webkit-transform:rotate3d(0, 0, 1, 0deg);transform:rotate3d(0, 0, 1, 0deg)}}@keyframes tada{from{-webkit-transform:scale3d(1, 1, 1);transform:scale3d(1, 1, 1)}10%,20%{-webkit-transform:scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);transform:scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);transform:scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);transform:scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)}to{-webkit-transform:scale3d(1, 1, 1);transform:scale3d(1, 1, 1)}}@keyframes wobble{from{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}15%{-webkit-transform:translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);transform:translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)}30%{-webkit-transform:translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);transform:translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)}45%{-webkit-transform:translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);transform:translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)}60%{-webkit-transform:translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);transform:translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)}75%{-webkit-transform:translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);transform:translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)}to{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}}@keyframes jello{from,11.1%,to{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-0.78125deg) skewY(-0.78125deg);transform:skewX(-0.78125deg) skewY(-0.78125deg)}77.7%{-webkit-transform:skewX(0.390625deg) skewY(0.390625deg);transform:skewX(0.390625deg) skewY(0.390625deg)}88.8%{-webkit-transform:skewX(-0.1953125deg) skewY(-0.1953125deg);transform:skewX(-0.1953125deg) skewY(-0.1953125deg)}}@keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes backInUp{0%{transform:translateY(1200px) scale(0.7);opacity:.7}80%{transform:translateY(0px) scale(0.7);opacity:.7}100%{transform:scale(1);opacity:1}}@keyframes backInRight{0%{transform:translateX(2000px) scale(0.7);opacity:.7}80%{transform:translateX(0px) scale(0.7);opacity:.7}100%{transform:scale(1);opacity:1}}@keyframes backInLeft{0%{transform:translateX(-2000px) scale(0.7);opacity:.7}80%{transform:translateX(0px) scale(0.7);opacity:.7}100%{transform:scale(1);opacity:1}}@keyframes backInDown{0%{transform:translateY(-1200px) scale(0.7);opacity:.7}80%{transform:translateY(0px) scale(0.7);opacity:.7}100%{transform:scale(1);opacity:1}}@keyframes bounceIn{from,20%,40%,60%,80%,to{animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;transform:scale3d(0.3, 0.3, 0.3)}20%{transform:scale3d(1.1, 1.1, 1.1)}40%{transform:scale3d(0.9, 0.9, 0.9)}60%{opacity:1;transform:scale3d(1.03, 1.03, 1.03)}80%{transform:scale3d(0.97, 0.97, 0.97)}to{opacity:1;transform:scale3d(1, 1, 1)}}@keyframes bounceInDown{from,60%,75%,90%,to{animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;transform:translate3d(0, -3000px, 0) scaleY(3)}60%{opacity:1;transform:translate3d(0, 25px, 0) scaleY(0.9)}75%{transform:translate3d(0, -10px, 0) scaleY(0.95)}90%{transform:translate3d(0, 5px, 0) scaleY(0.985)}to{transform:translate3d(0, 0, 0)}}@keyframes bounceInLeft{from,60%,75%,90%,to{animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;transform:translate3d(-3000px, 0, 0) scaleX(3)}60%{opacity:1;transform:translate3d(25px, 0, 0) scaleX(1)}75%{transform:translate3d(-10px, 0, 0) scaleX(0.98)}90%{transform:translate3d(5px, 0, 0) scaleX(0.995)}to{transform:translate3d(0, 0, 0)}}@keyframes bounceInRight{from,60%,75%,90%,to{animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}from{opacity:0;transform:translate3d(3000px, 0, 0) scaleX(3)}60%{opacity:1;transform:translate3d(-25px, 0, 0) scaleX(1)}75%{transform:translate3d(10px, 0, 0) scaleX(0.98)}90%{transform:translate3d(-5px, 0, 0) scaleX(0.995)}to{transform:translate3d(0, 0, 0)}}@keyframes bounceInUp{from,60%,75%,90%,to{animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}from{opacity:0;transform:translate3d(0, 3000px, 0) scaleY(5)}60%{opacity:1;transform:translate3d(0, -20px, 0) scaleY(0.9)}75%{transform:translate3d(0, 10px, 0) scaleY(0.95)}90%{transform:translate3d(0, -5px, 0) scaleY(0.985)}to{transform:translate3d(0, 0, 0)}}@keyframes fadeIn{from{opacity:0}to{opacity:1}}@keyframes fadeInBottomLeft{from{opacity:0;transform:translate3d(-100%, 100%, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}@keyframes fadeInBottomRight{from{opacity:0;transform:translate3d(100%, 100%, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}@keyframes fadeInDown{from{opacity:0;transform:translate3d(0, -100%, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}@keyframes fadeInDownBig{from{opacity:0;transform:translate3d(0, -2000px, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}@keyframes fadeInLeft{from{opacity:0;transform:translate3d(-100%, 0, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}@keyframes fadeInLeftBig{from{opacity:0;transform:translate3d(-2000px, 0, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}@keyframes fadeInRight{from{opacity:0;transform:translate3d(100%, 0, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}@keyframes fadeInRightBig{from{opacity:0;transform:translate3d(2000px, 0, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}@keyframes fadeInTopLeft{from{opacity:0;transform:translate3d(-100%, -100%, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}@keyframes fadeInTopRight{from{opacity:0;transform:translate3d(100%, -100%, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}@keyframes fadeInUp{from{opacity:0;transform:translate3d(0, 100%, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}@keyframes fadeInUpBig{from{opacity:0;transform:translate3d(0, 2000px, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}@keyframes rotateIn{from{transform:rotate3d(0, 0, 1, -200deg);opacity:0}to{transform:translate3d(0, 0, 0);opacity:1}}@keyframes rotateInDownLeft{from{transform:rotate3d(0, 0, 1, -45deg);opacity:0}to{transform:translate3d(0, 0, 0);opacity:1}}@keyframes rotateInDownRight{from{transform:rotate3d(0, 0, 1, 45deg);opacity:0}to{transform:translate3d(0, 0, 0);opacity:1}}@keyframes rotateInUpLeft{from{transform:rotate3d(0, 0, 1, 45deg);opacity:0}to{transform:translate3d(0, 0, 0);opacity:1}}@keyframes rotateInUpRight{from{transform:rotate3d(0, 0, 1, -90deg);opacity:0}to{transform:translate3d(0, 0, 0);opacity:1}}.has-entrance-animation{visibility:hidden;animation-name:none !important}.group-alignment-toolbar{width:100%}.group-alignment-toolbar .inner-btn{flex:1;justify-content:center}.grigora-multiselect-input{width:100%}.grigora-multiselect-input .grigora-multiselect-input__label{height:24px;display:flex;align-items:center}.grigora-datetime-input{width:100%}.grigora-datetime-input .grigora-datetime-input__label{height:24px;display:flex;align-items:center}.grigora-datetime-input__popover .components-popover__content{padding:8px 15px;width:300px;-ms-overflow-style:none;scrollbar-width:none}.grigora-datetime-input__popover .components-popover__content::-webkit-scrollbar{display:none}.group-alignment-toolbar-label{margin-bottom:0px;height:24px}.components-panel[is-grigora-sidebar] .block-editor-block-card{background-color:#f9f4f9}.components-panel[is-grigora-sidebar] .components-panel__body.block-editor-block-inspector__advanced{display:none;border-top:0px}.components-panel[grigora-sidebar-selected-index="2"] .components-panel__body.block-editor-block-inspector__advanced{display:block}.components-panel[is-grigora-sidebar] .components-panel__body.motion_effects_panel,.components-panel[is-grigora-sidebar] .components-panel__body.sticky_panel,.components-panel[is-grigora-sidebar] .components-panel__body.position_panel,.components-panel[is-grigora-sidebar] .components-panel__body.responsive_panel{display:none}.components-panel[is-grigora-sidebar] .components-panel__body.motion_effects_panel{border-top:0px}.components-panel[grigora-sidebar-selected-index="2"] .components-panel__body.motion_effects_panel,.components-panel[grigora-sidebar-selected-index="2"] .components-panel__body.sticky_panel,.components-panel[grigora-sidebar-selected-index="2"] .components-panel__body.position_panel,.components-panel[grigora-sidebar-selected-index="2"] .components-panel__body.responsive_panel{display:block}.grigora-notice{padding:15px;font-size:13px;line-height:1.5;text-align:left;margin-bottom:20px}.grigora-notice.status-success{color:#4e9b41;background-color:#e3f8e2;border-left:5px solid #c8f8ca}.grigora-notice.status-warning{color:#9b9a41;background-color:#f6f8e2;border-left:5px solid #e9e8b4}.grigora-notice.status-info{color:#41739c;background-color:#e4f3ff;border-left:5px solid #c6e3fb}.grigora-tabs-container .tabs-header{display:flex;background-color:#f9f4f9;margin-top:0;margin-bottom:0}.grigora-tabs-container .tabs-header .general,.grigora-tabs-container .tabs-header .styles,.grigora-tabs-container .tabs-header .advanced{flex:1;display:flex;justify-content:center;align-items:center;background-color:#f9f4f9;border-top-left-radius:5px;border-top-right-radius:5px;font-weight:500;margin-bottom:0px;cursor:pointer;flex-direction:column;padding-top:10px;padding-bottom:10px;gap:5px;color:#585858;border:1px solid rgba(0,0,0,0);border-bottom:1px solid #dbd9d9}.grigora-tabs-container .tabs-header .general:hover,.grigora-tabs-container .tabs-header .styles:hover,.grigora-tabs-container .tabs-header .advanced:hover{background-color:#f9f9f9}.grigora-tabs-container .tabs-header .general.react-tabs__tab--selected{background-color:#fff;border-top-left-radius:5px;border-top-right-radius:5px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;border:1px solid #dbd9d9;border-bottom:1px solid rgba(0,0,0,0);color:#9505e8}.grigora-tabs-container .tabs-header .styles.react-tabs__tab--selected{background-color:#fff;border-top-left-radius:5px;border-top-right-radius:5px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;border:1px solid #dbd9d9;border-bottom:1px solid rgba(0,0,0,0);color:#9505e8}.grigora-tabs-container .tabs-header .advanced.react-tabs__tab--selected{background-color:#fff;border-top-left-radius:5px;border-top-right-radius:5px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;border:1px solid #dbd9d9;border-bottom:1px solid rgba(0,0,0,0);color:#9505e8}.grigora-tabs-container .components-panel__body:first-child{border-top:0px}.grigora-normal-hover-tabs-container .tabs-header{display:flex;background-color:#f9f4f9}.grigora-normal-hover-tabs-container .tabs-header .normal,.grigora-normal-hover-tabs-container .tabs-header .hover{flex:1;display:flex;justify-content:center;align-items:center;background-color:#fff;border-top-left-radius:5px;border-top-right-radius:5px;font-weight:500;margin-bottom:0px;cursor:pointer;flex-direction:column;padding-top:5px;padding-bottom:5px;gap:5px;color:#585858;border:1px solid #e0e0e0}.grigora-normal-hover-tabs-container .tabs-header .normal:hover,.grigora-normal-hover-tabs-container .tabs-header .hover:hover{background-color:#f9f9f9}.grigora-normal-hover-tabs-container .tabs-header .normal{border-top-left-radius:5px;border-top-right-radius:0px;border-bottom-left-radius:5px;border-bottom-right-radius:0px}.grigora-normal-hover-tabs-container .tabs-header .hover{border-top-left-radius:0px;border-top-right-radius:5px;border-bottom-left-radius:0px;border-bottom-right-radius:5px}.grigora-normal-hover-tabs-container .tabs-header .normal.react-tabs__tab--selected{background-color:#f9f4f9;border:1px solid #9505e8;color:#9505e8}.grigora-normal-hover-tabs-container .tabs-header .hover.react-tabs__tab--selected{background-color:#f9f4f9;border:1px solid #9505e8;color:#9505e8}.grigora-normal-hover-tabs-container .components-panel__body:first-child{border-top:0px}.grigora-normal-hover-active-tabs-container .tabs-header{display:flex;background-color:#f9f4f9}.grigora-normal-hover-active-tabs-container .tabs-header .normal,.grigora-normal-hover-active-tabs-container .tabs-header .hover,.grigora-normal-hover-active-tabs-container .tabs-header .active{flex:1;display:flex;justify-content:center;align-items:center;background-color:#fff;border-top-left-radius:5px;border-top-right-radius:5px;font-weight:500;margin-bottom:0px;cursor:pointer;flex-direction:column;padding-top:5px;padding-bottom:5px;gap:5px;color:#585858;border:1px solid #e0e0e0}.grigora-normal-hover-active-tabs-container .tabs-header .normal:hover,.grigora-normal-hover-active-tabs-container .tabs-header .hover:hover,.grigora-normal-hover-active-tabs-container .tabs-header .active:hover{background-color:#f9f9f9}.grigora-normal-hover-active-tabs-container .tabs-header .normal{border-top-left-radius:5px;border-top-right-radius:0px;border-bottom-left-radius:5px;border-bottom-right-radius:0px}.grigora-normal-hover-active-tabs-container .tabs-header .hover{border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px}.grigora-normal-hover-active-tabs-container .tabs-header .active{border-top-left-radius:0px;border-top-right-radius:5px;border-bottom-left-radius:0px;border-bottom-right-radius:5px}.grigora-normal-hover-active-tabs-container .tabs-header .normal.react-tabs__tab--selected{background-color:#f9f4f9;border:1px solid #9505e8;color:#9505e8}.grigora-normal-hover-active-tabs-container .tabs-header .hover.react-tabs__tab--selected{background-color:#f9f4f9;border:1px solid #9505e8;color:#9505e8}.grigora-normal-hover-active-tabs-container .tabs-header .active.react-tabs__tab--selected{background-color:#f9f4f9;border:1px solid #9505e8;color:#9505e8}.grigora-normal-hover-active-tabs-container .components-panel__body:first-child{border-top:0px}.components-panel__body:last-child{border-bottom:1px solid #e0e0e0}.tab-normal,.tab-hover{width:50%;justify-content:center}.grigora-dropdown-hstack .components-base-control{width:100%;margin-bottom:10px}.grigora-icon-picker .grigora-svg-icon{width:64px;height:64px;display:inline-flex;margin:10px;justify-content:center;align-items:center;align-content:center;border:1px solid #ddd;border-radius:3px}.grigora-icon-picker .grigora-svg-icon:hover{background-color:#eee}.grigora-icon-picker .grigora-svg-icon svg{width:32px;height:32px}.grigora-icon-picker .grigora-svg-icon.active{border:2px solid #8000e9}.grigora-icons-selected-svg{display:flex;justify-content:center;align-items:center;align-content:center;margin:10px}.grigora-icons-selected-svg svg{width:32px;height:32px}.grigora-icons-selected{display:flex;justify-content:space-around}.grigora-inside-panel{border:1px solid #e0e0e0 !important}.grigora-hover-effects-panel .components-base-control__field{justify-content:center}.grigora-icons-panel .dropdown-component-margin-0 .components-base-control{margin-bottom:0px !important}.grigora-icons-panel .dropdown-component-margin-0 .components-base-control .components-base-control__field{margin-bottom:0px !important}.grigora-icons-panel .components-toggle-control .components-base-control__field{justify-content:center}.grigora-icon-picker-modal-overlay .components-modal__frame{width:90vw;height:70vh}.popover-link-controls{padding:16px;padding-top:0px}.grigora-range-input .components-range-control{width:100%;margin-bottom:0px !important}.grigora-range-input .components-range-control .components-base-control__field{margin-bottom:0px !important}.grigora-range-input .components-unit-control-wrapper{width:75px}.grigora-range-input .components-unit-control-wrapper .components-unit-control__unit-label{width:15px !important}.grigora-range-input .grigora-range-input__label{height:24px;display:flex;align-items:center}.grigora-select-input{width:100%}.grigora-select-input .grigora-select-input__label{height:24px;display:flex;align-items:center}.grigora-fontfamily-input{width:100%}.grigora-fontfamily-input .grigora-fontfamily-input__label{height:24px;display:flex;align-items:center}.grigora-color-input{width:100%;padding-bottom:15px}.grigora-color-input:first-child{padding-top:15px}.grigora-color-input .grigora-color-input__label{height:24px;display:flex;align-items:center}.grigora-color-input__colorselect{display:inline-flex;align-items:center;gap:16px;width:100%;padding:10px;border:1px solid #e0e0e0;justify-content:space-between}.grigora-color-input__colorselect .inner{display:inline-flex;align-items:center;gap:16px}.grigora-color-input__popover .components-popover__content{padding:8px}.grigora-gradient-input{width:100%}.grigora-gradient-input .grigora-gradient-input__label{height:24px;display:flex;align-items:center}.grigora-colorgradient-input{width:100%;padding-bottom:15px}.grigora-colorgradient-input .grigora-colorgradient-input__label{height:24px;display:flex;align-items:center}.grigora-colorgradient-input__colorselect{display:inline-flex;align-items:center;gap:16px;width:100%;padding:10px;border:1px solid #e0e0e0}.grigora-colorgradient-input__popover .components-popover__content{padding:8px;width:250px}.grigora-colorgradient-input__popover .components-popover__content legend{display:none}.grigora-borderbox-input{width:100%}.grigora-borderbox-input .grigora-borderbox-input__label{height:24px;display:flex;align-items:center}.grigora-alignment-input{width:100%}.grigora-alignment-input .grigora-alignment-input__label{height:24px;display:flex;align-items:center}.grigora-alignment-input .alignment-toolbar{width:100%}.grigora-alignment-input .alignment-toolbar .inner-btn{flex:1;justify-content:center}.grigora-typography-input{width:100%}.grigora-typography-input .grigora-typography-input__label{height:24px;display:flex;align-items:center}.grigora-borderradius-input{width:100%}.grigora-borderradius-input .grigora-borderradius-input__label{height:24px;display:flex;align-items:center}.grigora-borderradius-input .grigora-borderradius-input__select legend{display:none}.grigora-borderradius-input .grigora-borderradius-input__hstack{padding-bottom:5px}.grigora-unit-input{width:100%}.grigora-unit-input .grigora-unit-input__label{height:24px;display:flex;align-items:center}.grigora-ltrb-input{width:100%}.grigora-ltrb-input .grigora-ltrb-input__label{height:24px;display:flex;align-items:center}.grigora-ltrb-input .grigora-ltrb-input__top{width:50%;margin:auto}.grigora-ltrb-input .grigora-ltrb-input__bottom{width:50%;margin:auto}.grigora-box-input{width:100%}.grigora-box-input .grigora-box-input__label{height:24px;display:flex;align-items:center}.grigora-box-input .component-box-control__header{display:none}.grigora-box-input .components-h-stack{gap:10px}.grigora-number-input{width:100%}.grigora-number-input .grigora-number-input__label{height:24px;display:flex;align-items:center}.grigora-text-input{width:100%}.grigora-text-input .grigora-text-input__label{height:24px;display:flex;align-items:center}.grigora-toggle-input{width:100%}.grigora-toggle-input .grigora-toggle-input__label{height:24px;display:flex;align-items:center}.grigora-radio-input{width:100%}.grigora-radio-input .grigora-radio-input__label{height:24px;display:flex;align-items:center}.grigora-radio-input__radiobox{text-align:center}.background-selector{text-align:center;margin-top:15px}.grigora-media-select{text-align:center}.grigora-gallery-picker-editor{display:flex;gap:10px;flex-wrap:wrap;justify-content:center;border:1px solid #d7d4d4;padding:5px;border-radius:3px}.grigora-gallery-picker-editor img{display:inline-flex;height:auto;max-width:25%}.grigora-focalpoint-picker-h1ma{margin-top:1rem}.grigora-cssfilter-input__popover .components-popover__content{padding:8px;width:200px;-ms-overflow-style:none;scrollbar-width:none}.grigora-cssfilter-input__popover .components-popover__content::-webkit-scrollbar{display:none}.grigora-cssfilter-input__popover .components-popover__content .grigora-range-input__blur .components-base-control__label{margin-bottom:0px}.grigora-cssfilter-input__popover .components-popover__content .grigora-range-input__brightness .components-base-control__label{margin-bottom:0px}.grigora-cssfilter-input__popover .components-popover__content .grigora-range-input__contrast .components-base-control__label{margin-bottom:0px}.grigora-cssfilter-input__popover .components-popover__content .grigora-range-input__saturation .components-base-control__label{margin-bottom:0px}.grigora-cssfilter-input__popover .components-popover__content .grigora-range-input__hue .components-base-control__label{margin-bottom:0px}.grigora-mousemovement-input__popover .components-popover__content{padding:8px;width:250px;-ms-overflow-style:none;scrollbar-width:none}.grigora-mousemovement-input__popover .components-popover__content::-webkit-scrollbar{display:none}.grigora-mousemovement-input__popover .components-popover__content .grigora-range-input__blur .components-base-control__label{margin-bottom:0px}.grigora-mousemovement-input__popover .components-popover__content .grigora-range-input__brightness .components-base-control__label{margin-bottom:0px}.grigora-mousemovement-input__popover .components-popover__content .grigora-range-input__contrast .components-base-control__label{margin-bottom:0px}.grigora-mousemovement-input__popover .components-popover__content .grigora-range-input__saturation .components-base-control__label{margin-bottom:0px}.grigora-mousemovement-input__popover .components-popover__content .grigora-range-input__hue .components-base-control__label{margin-bottom:0px}.grigora-typography-input__popover .components-popover__content{padding:8px 15px;width:250px;-ms-overflow-style:none;scrollbar-width:none}.grigora-typography-input__popover .components-popover__content::-webkit-scrollbar{display:none}.grigora-typography-input__popover .components-popover__content .grigora-range-input__blur .components-base-control__label{margin-bottom:0px}.grigora-typography-input__popover .components-popover__content .grigora-range-input__brightness .components-base-control__label{margin-bottom:0px}.grigora-typography-input__popover .components-popover__content .grigora-range-input__contrast .components-base-control__label{margin-bottom:0px}.grigora-typography-input__popover .components-popover__content .grigora-range-input__saturation .components-base-control__label{margin-bottom:0px}.grigora-typography-input__popover .components-popover__content .grigora-range-input__hue .components-base-control__label{margin-bottom:0px}.grigora-scrollmovement-input__popover .components-popover__content{width:250px;-ms-overflow-style:none;scrollbar-width:none}.grigora-scrollmovement-input__popover .components-popover__content .inner-section{padding:8px;padding-left:25px;padding-right:25px}.grigora-scrollmovement-input__popover .components-popover__content::-webkit-scrollbar{display:none}.grigora-scrollmovement-input__popover .components-popover__content .grigora-range-input__blur .components-base-control__label{margin-bottom:0px}.grigora-scrollmovement-input__popover .components-popover__content .grigora-range-input__brightness .components-base-control__label{margin-bottom:0px}.grigora-scrollmovement-input__popover .components-popover__content .grigora-range-input__contrast .components-base-control__label{margin-bottom:0px}.grigora-scrollmovement-input__popover .components-popover__content .grigora-range-input__saturation .components-base-control__label{margin-bottom:0px}.grigora-scrollmovement-input__popover .components-popover__content .grigora-range-input__hue .components-base-control__label{margin-bottom:0px}.grigora-kit-gradient-popover-contents{min-width:360px;display:block;padding:30px 20px;display:flex;position:relative}.grigora-kit-gradient-popover-contents .components-custom-gradient-picker__control-point-button{padding:6px 6px}.grigora-pattern-import-btn{color:#b708b5 !important;border:1px solid #b708b5;background-color:#fff !important;margin-left:5px;margin-right:5px;transition:.3s}.grigora-pattern-import-btn:hover{color:#fff !important;border:1px solid #b708b5;background-color:#b708b5 !important}.grigora-patterns-modal{display:none}.grigora-patterns-modal-open .grigora-patterns-modal{display:flex}@keyframes pattern-loading{to{background-position-x:-20%}}@keyframes rotation{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes rotationBack{0%{transform:rotate(0deg)}100%{transform:rotate(-360deg)}}.grigora-patterns-modal{width:100%;height:100%;position:absolute;top:0;left:0;bottom:0;right:0;background:#f0f2f4;flex-direction:column;overflow:hidden}.grigora-patterns-modal .header-g{display:flex;width:100%;background-color:#fff;height:60px;justify-content:space-between;border-bottom:1px solid #dddada}.grigora-patterns-modal .header-g .left{display:flex;align-items:center;justify-content:center;gap:10px;font-weight:500;font-size:15px;line-height:18px;padding:8px 15px 8px 15px;cursor:default}.grigora-patterns-modal .header-g .left img{height:100%;filter:invert(11%) sepia(99%) saturate(6314%) hue-rotate(279deg) brightness(91%) contrast(111%)}.grigora-patterns-modal .header-g .center{display:flex;display:flex;align-items:center;justify-content:center;gap:10px;font-size:15px;line-height:18px;padding:8px 15px 8px 15px;cursor:default}.grigora-patterns-modal .header-g .right{display:flex;align-items:center;justify-content:center}.grigora-patterns-modal .header-g .right .close{display:flex;height:100%;gap:10px;font-weight:500;font-size:15px;line-height:18px;padding:18px;cursor:pointer;transition:.3s}.grigora-patterns-modal .header-g .right .close:hover{background-color:#f9f4f9}.grigora-patterns-modal .header-g .right .close svg{height:100%;width:100%}.grigora-patterns-modal .body{display:flex;flex:1;width:100%}.grigora-patterns-modal .body .sidebar{display:flex;background-color:#fff;width:250px;height:100%;padding:20px;flex-direction:column;border-right:1px solid #dddada;gap:30px}.grigora-patterns-modal .body .sidebar .title{font-size:14px;font-weight:700;color:#4c4c4c;cursor:default}.grigora-patterns-modal .body .sidebar .categories{display:flex;gap:12px;flex-direction:column}.grigora-patterns-modal .body .sidebar .select-category{font-size:14px;color:#7c7c7c;display:flex;justify-content:space-between;cursor:pointer}.grigora-patterns-modal .body .sidebar .select-category:hover{color:#9505e8}.grigora-patterns-modal .body .sidebar .select-category.active{color:#9505e8}.grigora-patterns-modal .body .patterns-parent{width:100%;padding:3rem 2rem 4rem 2rem;overflow-x:hidden;overflow-y:scroll;height:calc(100vh - 60px)}.grigora-patterns-modal .body .patterns-parent::-webkit-scrollbar{height:6px;width:6px}.grigora-patterns-modal .body .patterns-parent::-webkit-scrollbar-track{border-radius:10px;background:rgba(0,0,0,0)}.grigora-patterns-modal .body .patterns-parent::-webkit-scrollbar-thumb{border-radius:10px;background:rgba(0,0,0,.2)}.grigora-patterns-modal .body .patterns-parent::-webkit-scrollbar-thumb:hover{background:rgba(0,0,0,.4)}.grigora-patterns-modal .body .patterns-parent::-webkit-scrollbar-thumb:active{background:rgba(0,0,0,.9)}.grigora-patterns-modal .body .select-pattern{display:inline-block;page-break-inside:avoid;-moz-column-break-inside:avoid;break-inside:avoid;width:100%;position:relative;box-shadow:0px 0px 15px rgba(33,33,33,.41)}.grigora-patterns-modal .body .select-pattern.loading{height:255px;background-color:#ededed;background:linear-gradient(100deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 60%) #ededed;background-size:200% 100%;background-position-x:180%;animation:1s pattern-loading ease-in-out infinite}.grigora-patterns-modal .body .select-pattern .thumbnail{display:flex}.grigora-patterns-modal .body .select-pattern .thumbnail img{width:100%}.grigora-patterns-modal .body .select-pattern .overlay{position:absolute;top:0;bottom:0;left:0;right:0;gap:10px;display:none;justify-content:center;align-items:center}.grigora-patterns-modal .body .select-pattern .overlay .import{padding:15px;background:#fff;height:20px;display:flex;justify-content:center;align-items:center;border-radius:2px;cursor:pointer;transition:.3s;color:#4c4c4c}.grigora-patterns-modal .body .select-pattern .overlay .import:hover{background-color:#eae1f0}.grigora-patterns-modal .body .select-pattern .overlay .preview{padding:15px;background:#fff;height:20px;display:flex;justify-content:center;align-items:center;border-radius:2px;cursor:pointer;transition:.3s;text-decoration:none;color:#4c4c4c}.grigora-patterns-modal .body .select-pattern .overlay .preview:hover{background-color:#eae1f0}.grigora-patterns-modal .body .select-pattern .overlay .loader{display:none}.grigora-patterns-modal .body .select-pattern.active .overlay{display:flex;background-color:rgba(78,78,78,.5490196078)}.grigora-patterns-modal .body .select-pattern.active .import,.grigora-patterns-modal .body .select-pattern.active .preview{display:none}.grigora-patterns-modal .body .select-pattern.active .loader{width:48px;height:48px;border-radius:50%;display:inline-block;position:relative;border:3px solid;border-color:#fff #fff rgba(0,0,0,0) rgba(0,0,0,0);box-sizing:border-box;animation:rotation 1s linear infinite}.grigora-patterns-modal .body .select-pattern.active .loader::after,.grigora-patterns-modal .body .select-pattern.active .loader::before{content:"";box-sizing:border-box;position:absolute;left:0;right:0;top:0;bottom:0;margin:auto;border:3px solid;border-color:rgba(0,0,0,0) rgba(0,0,0,0) #6e1057 #ca6fb3;width:40px;height:40px;border-radius:50%;box-sizing:border-box;animation:rotationBack .5s linear infinite;transform-origin:center center}.grigora-patterns-modal .body .select-pattern.active .loader::before{width:32px;height:32px;border-color:#fff #fff rgba(0,0,0,0) rgba(0,0,0,0);animation:rotation 1.5s linear infinite}.grigora-patterns-modal .body .select-pattern:hover .overlay{display:flex;background-color:rgba(78,78,78,.5490196078)}.element-container{position:relative;display:flex;-webkit-box-align:center;align-items:center;width:100%;padding:0 20px;background-color:#fff;border:1px solid #efefef;box-sizing:border-box;user-select:none;color:#333;font-weight:400;height:48px}.main-error-container{border-style:solid;text-align:center;padding:2%}.error-title-container{margin-top:0;margin-bottom:4%}.cursor-events-default{cursor:default}.responsive-control{display:flex;gap:5px;margin-left:5px}.responsive-control .desktop,.responsive-control .tablet,.responsive-control .mobile{display:flex;width:18px;cursor:pointer;align-items:center}.responsive-control .desktop svg,.responsive-control .tablet svg,.responsive-control .mobile svg{color:#979595}.responsive-control .desktop.active svg,.responsive-control .tablet.active svg,.responsive-control .mobile.active svg{color:#9505e8}.responsive-control .mobile svg{height:18px}
  • grigora-kit/trunk/assets/js/sticky.js

    r2792418 r2821268  
    6969                var current_scroll = document.documentElement.scrollTop;
    7070                if(objects[i].sticky_data.sticky == "top"){
     71                    // Check to add sticky.
    7172                    if(
    7273                        current_scroll + admin + objects[i].sticky_data.offset > objects[i].parentTop &&
     
    8182                        objects[i].element.style.transition = "0s";
    8283                        objects[i].space.style.display = "block";
     84                        objects[i].element.style.zIndex = "100";
    8385   
    8486                    }
     
    9597                        objects[i].element.style.transition = "0s";
    9698                        objects[i].space.style.display = "block";
     99                        objects[i].element.style.removeProperty("z-index");
    97100                    }
     101                    // Check for remove sticky.
    98102                    else{
    99103                        objects[i].element.style.removeProperty("position");
     
    102106                        objects[i].element.style.removeProperty("margin-bottom");
    103107                        objects[i].space.style.display = "none";
     108                        objects[i].element.style.removeProperty("z-index");
    104109                    }
    105110                }
    106111                else{
     112                    // Check to add sticky.
    107113                    if(
    108114                        current_scroll - objects[i].sticky_data.offset + windowHeight > objects[i].parentTop &&
     
    117123                        objects[i].element.style.transition = "0s";
    118124                        objects[i].space.style.display = "block";
     125                        objects[i].element.style.zIndex = "100";
    119126                    }
    120127                    else if(
     
    130137                        objects[i].element.style.transition = "0s";
    131138                        objects[i].space.style.display = "block";
     139                        objects[i].element.style.removeProperty("z-index");
    132140                    }
     141                    // Check for remove sticky.
    133142                    else{
    134143                        objects[i].element.style.removeProperty("position");
     
    137146                        objects[i].element.style.removeProperty("margin-bottom");
    138147                        objects[i].space.style.display = "none";
     148                        objects[i].element.style.removeProperty("z-index");
    139149                    }
    140150                }
  • grigora-kit/trunk/assets/js/sticky.min.js

    r2792418 r2821268  
    1 window.addEventListener("load",function(){window.removeEventListener("scroll",function(){p(()=>{a()})});const e=document.getElementsByClassName("grigora-sticky");var t,o,n=[],s=0,i=window.innerHeight||document.documentElement.clientHeight;document.querySelector("#wpadminbar")&&screen.width>=600&&(s+=document.querySelector("#wpadminbar").offsetHeight);for(var l=0;l<e.length;l++){let s=e[l].getAttribute("data-sticky_data");(s=JSON.parse(s)).offset?s.offset=Number(s.offset):s.offset=0;let i=0,a=1/0;s.inside&&(s.parent&&document.querySelector(s.parent)?(document.querySelector(s.parent).style.position="relative",i=document.querySelector(s.parent).getBoundingClientRect().top+document.documentElement.scrollTop,a=document.querySelector(s.parent).clientHeight):(e[l].parentNode.style.position="relative",i=e[l].parentNode.getBoundingClientRect().top+document.documentElement.scrollTop,a=e[l].parentNode.clientHeight));var r=document.createElement("div");r.style.display="none",r.style.height=e[l].offsetHeight+"px",t=e[l],o=r,t.parentNode.insertBefore(o,t.nextSibling),e[l].style.width=e[l].offsetWidth+"px",n.push({element:e[l],space:r,sticky_data:s,top:e[l].getBoundingClientRect().top+document.documentElement.scrollTop,height:e[l].offsetHeight,parentTop:i,parentHeight:a})}function a(){for(var e=0;e<n.length;e++)if(n[e].sticky_data){if(screen.width<768&&n[e].sticky_data.hideMobile)continue;if(screen.width>=768&&screen.width<1025&&n[e].sticky_data.hideTablet)continue;if(screen.width>=1025&&n[e].sticky_data.hideDesktop)continue;var t=document.documentElement.scrollTop;"top"==n[e].sticky_data.sticky?t+s+n[e].sticky_data.offset>n[e].parentTop&&t+s+n[e].sticky_data.offset<n[e].parentTop+n[e].parentHeight-n[e].height&&t+s+n[e].sticky_data.offset>n[e].top?(n[e].element.style.removeProperty("bottom"),n[e].element.style.position="fixed",n[e].element.style.top=0+s+n[e].sticky_data.offset+"px",n[e].element.style.marginTop="0px",n[e].element.style.marginBottom="0px",n[e].element.style.transition="0s",n[e].space.style.display="block"):t+s+n[e].sticky_data.offset>n[e].parentTop&&t+s+n[e].sticky_data.offset>n[e].parentTop+n[e].parentHeight-n[e].height&&t+s+n[e].sticky_data.offset>n[e].top?(n[e].element.style.position="absolute",n[e].element.style.bottom="0px",n[e].element.style.removeProperty("top"),n[e].element.style.marginTop="0px",n[e].element.style.marginBottom="0px",n[e].element.style.transition="0s",n[e].space.style.display="block"):(n[e].element.style.removeProperty("position"),n[e].element.style.removeProperty("top"),n[e].element.style.removeProperty("margin-top"),n[e].element.style.removeProperty("margin-bottom"),n[e].space.style.display="none"):t-n[e].sticky_data.offset+i>n[e].parentTop&&t-n[e].sticky_data.offset+i<n[e].parentTop+n[e].parentHeight&&t-n[e].height+i-n[e].sticky_data.offset>n[e].top?(n[e].element.style.removeProperty("top"),n[e].element.style.position="fixed",n[e].element.style.bottom=0+n[e].sticky_data.offset+"px",n[e].element.style.marginTop="0px",n[e].element.style.marginBottom="0px",n[e].element.style.transition="0s",n[e].space.style.display="block"):t-n[e].sticky_data.offset+i>n[e].parentTop&&t-n[e].sticky_data.offset+i>n[e].parentTop+n[e].parentHeight&&t-n[e].height+i-n[e].sticky_data.offset>n[e].top?(n[e].element.style.position="absolute",n[e].element.style.bottom="0px",n[e].element.style.removeProperty("top"),n[e].element.style.marginTop="0px",n[e].element.style.marginBottom="0px",n[e].element.style.transition="0s",n[e].space.style.display="block"):(n[e].element.style.removeProperty("position"),n[e].element.style.removeProperty("bottom"),n[e].element.style.removeProperty("margin-top"),n[e].element.style.removeProperty("margin-bottom"),n[e].space.style.display="none")}}const p=function(e){let t;return o=>{t||e(()=>{const e=t;t=null,e()}),t=o}}(requestAnimationFrame);window.addEventListener("scroll",function(){p(()=>{a()})}),a()});
     1window.addEventListener("load",function(){window.removeEventListener("scroll",function(){p(()=>{a()})});const e=document.getElementsByClassName("grigora-sticky");var t,o,n=[],s=0,l=window.innerHeight||document.documentElement.clientHeight;document.querySelector("#wpadminbar")&&screen.width>=600&&(s+=document.querySelector("#wpadminbar").offsetHeight);for(var i=0;i<e.length;i++){let s=e[i].getAttribute("data-sticky_data");(s=JSON.parse(s)).offset?s.offset=Number(s.offset):s.offset=0;let l=0,a=1/0;s.inside&&(s.parent&&document.querySelector(s.parent)?(document.querySelector(s.parent).style.position="relative",l=document.querySelector(s.parent).getBoundingClientRect().top+document.documentElement.scrollTop,a=document.querySelector(s.parent).clientHeight):(e[i].parentNode.style.position="relative",l=e[i].parentNode.getBoundingClientRect().top+document.documentElement.scrollTop,a=e[i].parentNode.clientHeight));var r=document.createElement("div");r.style.display="none",r.style.height=e[i].offsetHeight+"px",t=e[i],o=r,t.parentNode.insertBefore(o,t.nextSibling),e[i].style.width=e[i].offsetWidth+"px",n.push({element:e[i],space:r,sticky_data:s,top:e[i].getBoundingClientRect().top+document.documentElement.scrollTop,height:e[i].offsetHeight,parentTop:l,parentHeight:a})}function a(){for(var e=0;e<n.length;e++)if(n[e].sticky_data){if(screen.width<768&&n[e].sticky_data.hideMobile)continue;if(screen.width>=768&&screen.width<1025&&n[e].sticky_data.hideTablet)continue;if(screen.width>=1025&&n[e].sticky_data.hideDesktop)continue;var t=document.documentElement.scrollTop;"top"==n[e].sticky_data.sticky?t+s+n[e].sticky_data.offset>n[e].parentTop&&t+s+n[e].sticky_data.offset<n[e].parentTop+n[e].parentHeight-n[e].height&&t+s+n[e].sticky_data.offset>n[e].top?(n[e].element.style.removeProperty("bottom"),n[e].element.style.position="fixed",n[e].element.style.top=0+s+n[e].sticky_data.offset+"px",n[e].element.style.marginTop="0px",n[e].element.style.marginBottom="0px",n[e].element.style.transition="0s",n[e].space.style.display="block",n[e].element.style.zIndex="100"):t+s+n[e].sticky_data.offset>n[e].parentTop&&t+s+n[e].sticky_data.offset>n[e].parentTop+n[e].parentHeight-n[e].height&&t+s+n[e].sticky_data.offset>n[e].top?(n[e].element.style.position="absolute",n[e].element.style.bottom="0px",n[e].element.style.removeProperty("top"),n[e].element.style.marginTop="0px",n[e].element.style.marginBottom="0px",n[e].element.style.transition="0s",n[e].space.style.display="block",n[e].element.style.removeProperty("z-index")):(n[e].element.style.removeProperty("position"),n[e].element.style.removeProperty("top"),n[e].element.style.removeProperty("margin-top"),n[e].element.style.removeProperty("margin-bottom"),n[e].space.style.display="none",n[e].element.style.removeProperty("z-index")):t-n[e].sticky_data.offset+l>n[e].parentTop&&t-n[e].sticky_data.offset+l<n[e].parentTop+n[e].parentHeight&&t-n[e].height+l-n[e].sticky_data.offset>n[e].top?(n[e].element.style.removeProperty("top"),n[e].element.style.position="fixed",n[e].element.style.bottom=0+n[e].sticky_data.offset+"px",n[e].element.style.marginTop="0px",n[e].element.style.marginBottom="0px",n[e].element.style.transition="0s",n[e].space.style.display="block",n[e].element.style.zIndex="100"):t-n[e].sticky_data.offset+l>n[e].parentTop&&t-n[e].sticky_data.offset+l>n[e].parentTop+n[e].parentHeight&&t-n[e].height+l-n[e].sticky_data.offset>n[e].top?(n[e].element.style.position="absolute",n[e].element.style.bottom="0px",n[e].element.style.removeProperty("top"),n[e].element.style.marginTop="0px",n[e].element.style.marginBottom="0px",n[e].element.style.transition="0s",n[e].space.style.display="block",n[e].element.style.removeProperty("z-index")):(n[e].element.style.removeProperty("position"),n[e].element.style.removeProperty("bottom"),n[e].element.style.removeProperty("margin-top"),n[e].element.style.removeProperty("margin-bottom"),n[e].space.style.display="none",n[e].element.style.removeProperty("z-index"))}}const p=function(e){let t;return o=>{t||e(()=>{const e=t;t=null,e()}),t=o}}(requestAnimationFrame);window.addEventListener("scroll",function(){p(()=>{a()})}),a()});
  • grigora-kit/trunk/build/index.asset.php

    r2806304 r2821268  
    1 <?php return array('dependencies' => array('lodash', 'react', 'react-dom', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-core-data', 'wp-data', 'wp-edit-post', 'wp-edit-site', 'wp-element', 'wp-hooks', 'wp-html-entities', 'wp-i18n', 'wp-keycodes', 'wp-primitives', 'wp-rich-text'), 'version' => 'dd48b7672ece2b26a559');
     1<?php return array('dependencies' => array('lodash', 'react', 'react-dom', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-core-data', 'wp-data', 'wp-dom-ready', 'wp-edit-post', 'wp-edit-site', 'wp-element', 'wp-hooks', 'wp-html-entities', 'wp-i18n', 'wp-keycodes', 'wp-primitives', 'wp-rich-text'), 'version' => 'c5477daa63d762f2d79b');
  • grigora-kit/trunk/build/index.js

    r2806304 r2821268  
    1 !function(){var t={4184:function(t,e){var a;!function(){"use strict";var l={}.hasOwnProperty;function n(){for(var t=[],e=0;e<arguments.length;e++){var a=arguments[e];if(a){var i=typeof a;if("string"===i||"number"===i)t.push(a);else if(Array.isArray(a)){if(a.length){var r=n.apply(null,a);r&&t.push(r)}}else if("object"===i)if(a.toString===Object.prototype.toString)for(var o in a)l.call(a,o)&&a[o]&&t.push(o);else t.push(a.toString())}}return t.join(" ")}t.exports?(n.default=n,t.exports=n):void 0===(a=function(){return n}.apply(e,[]))||(t.exports=a)}()},8273:function(t,e,a){"use strict";a.r(e),a.d(e,{CountUp:function(){return n}});var l=function(){return(l=Object.assign||function(t){for(var e,a=1,l=arguments.length;a<l;a++)for(var n in e=arguments[a])Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t}).apply(this,arguments)},n=function(){function t(t,e,a){var n=this;this.endVal=e,this.options=a,this.version="2.3.1",this.defaults={startVal:0,decimalPlaces:0,duration:2,useEasing:!0,useGrouping:!0,smartEasingThreshold:999,smartEasingAmount:333,separator:",",decimal:".",prefix:"",suffix:"",enableScrollSpy:!1,scrollSpyDelay:200,scrollSpyOnce:!1},this.finalEndVal=null,this.useEasing=!0,this.countDown=!1,this.error="",this.startVal=0,this.paused=!0,this.once=!1,this.count=function(t){n.startTime||(n.startTime=t);var e=t-n.startTime;n.remaining=n.duration-e,n.useEasing?n.countDown?n.frameVal=n.startVal-n.easingFn(e,0,n.startVal-n.endVal,n.duration):n.frameVal=n.easingFn(e,n.startVal,n.endVal-n.startVal,n.duration):n.countDown?n.frameVal=n.startVal-(n.startVal-n.endVal)*(e/n.duration):n.frameVal=n.startVal+(n.endVal-n.startVal)*(e/n.duration),n.countDown?n.frameVal=n.frameVal<n.endVal?n.endVal:n.frameVal:n.frameVal=n.frameVal>n.endVal?n.endVal:n.frameVal,n.frameVal=Number(n.frameVal.toFixed(n.options.decimalPlaces)),n.printValue(n.frameVal),e<n.duration?n.rAF=requestAnimationFrame(n.count):null!==n.finalEndVal?n.update(n.finalEndVal):n.callback&&n.callback()},this.formatNumber=function(t){var e,a,l,i,r=t<0?"-":"";e=Math.abs(t).toFixed(n.options.decimalPlaces);var o=(e+="").split(".");if(a=o[0],l=o.length>1?n.options.decimal+o[1]:"",n.options.useGrouping){i="";for(var s=0,h=a.length;s<h;++s)0!==s&&s%3==0&&(i=n.options.separator+i),i=a[h-s-1]+i;a=i}return n.options.numerals&&n.options.numerals.length&&(a=a.replace(/[0-9]/g,(function(t){return n.options.numerals[+t]})),l=l.replace(/[0-9]/g,(function(t){return n.options.numerals[+t]}))),r+n.options.prefix+a+l+n.options.suffix},this.easeOutExpo=function(t,e,a,l){return a*(1-Math.pow(2,-10*t/l))*1024/1023+e},this.options=l(l({},this.defaults),a),this.formattingFn=this.options.formattingFn?this.options.formattingFn:this.formatNumber,this.easingFn=this.options.easingFn?this.options.easingFn:this.easeOutExpo,this.startVal=this.validateValue(this.options.startVal),this.frameVal=this.startVal,this.endVal=this.validateValue(e),this.options.decimalPlaces=Math.max(this.options.decimalPlaces),this.resetDuration(),this.options.separator=String(this.options.separator),this.useEasing=this.options.useEasing,""===this.options.separator&&(this.options.useGrouping=!1),this.el="string"==typeof t?document.getElementById(t):t,this.el?this.printValue(this.startVal):this.error="[CountUp] target is null or undefined","undefined"!=typeof window&&this.options.enableScrollSpy&&(this.error?console.error(this.error,t):(window.onScrollFns=window.onScrollFns||[],window.onScrollFns.push((function(){return n.handleScroll(n)})),window.onscroll=function(){window.onScrollFns.forEach((function(t){return t()}))},this.handleScroll(this)))}return t.prototype.handleScroll=function(t){if(t&&window&&!t.once){var e=window.innerHeight+window.scrollY,a=t.el.getBoundingClientRect(),l=a.top+a.height+window.pageYOffset;l<e&&l>window.scrollY&&t.paused?(t.paused=!1,setTimeout((function(){return t.start()}),t.options.scrollSpyDelay),t.options.scrollSpyOnce&&(t.once=!0)):window.scrollY>l&&!t.paused&&t.reset()}},t.prototype.determineDirectionAndSmartEasing=function(){var t=this.finalEndVal?this.finalEndVal:this.endVal;this.countDown=this.startVal>t;var e=t-this.startVal;if(Math.abs(e)>this.options.smartEasingThreshold){this.finalEndVal=t;var a=this.countDown?1:-1;this.endVal=t+a*this.options.smartEasingAmount,this.duration=this.duration/2}else this.endVal=t,this.finalEndVal=null;this.finalEndVal?this.useEasing=!1:this.useEasing=this.options.useEasing},t.prototype.start=function(t){this.error||(this.callback=t,this.duration>0?(this.determineDirectionAndSmartEasing(),this.paused=!1,this.rAF=requestAnimationFrame(this.count)):this.printValue(this.endVal))},t.prototype.pauseResume=function(){this.paused?(this.startTime=null,this.duration=this.remaining,this.startVal=this.frameVal,this.determineDirectionAndSmartEasing(),this.rAF=requestAnimationFrame(this.count)):cancelAnimationFrame(this.rAF),this.paused=!this.paused},t.prototype.reset=function(){cancelAnimationFrame(this.rAF),this.paused=!0,this.resetDuration(),this.startVal=this.validateValue(this.options.startVal),this.frameVal=this.startVal,this.printValue(this.startVal)},t.prototype.update=function(t){cancelAnimationFrame(this.rAF),this.startTime=null,this.endVal=this.validateValue(t),this.endVal!==this.frameVal&&(this.startVal=this.frameVal,this.finalEndVal||this.resetDuration(),this.finalEndVal=null,this.determineDirectionAndSmartEasing(),this.rAF=requestAnimationFrame(this.count))},t.prototype.printValue=function(t){var e=this.formattingFn(t);"INPUT"===this.el.tagName?this.el.value=e:"text"===this.el.tagName||"tspan"===this.el.tagName?this.el.textContent=e:this.el.innerHTML=e},t.prototype.ensureNumber=function(t){return"number"==typeof t&&!isNaN(t)},t.prototype.validateValue=function(t){var e=Number(t);return this.ensureNumber(e)?e:(this.error="[CountUp] invalid start or end value: ".concat(t),null)},t.prototype.resetDuration=function(){this.startTime=null,this.duration=1e3*Number(this.options.duration),this.remaining=this.duration},t}()},9960:function(t,e){"use strict";var a;Object.defineProperty(e,"__esModule",{value:!0}),e.Doctype=e.CDATA=e.Tag=e.Style=e.Script=e.Comment=e.Directive=e.Text=e.Root=e.isTag=e.ElementType=void 0,function(t){t.Root="root",t.Text="text",t.Directive="directive",t.Comment="comment",t.Script="script",t.Style="style",t.Tag="tag",t.CDATA="cdata",t.Doctype="doctype"}(a=e.ElementType||(e.ElementType={})),e.isTag=function(t){return t.type===a.Tag||t.type===a.Script||t.type===a.Style},e.Root=a.Root,e.Text=a.Text,e.Directive=a.Directive,e.Comment=a.Comment,e.Script=a.Script,e.Style=a.Style,e.Tag=a.Tag,e.CDATA=a.CDATA,e.Doctype=a.Doctype},259:function(t,e,a){"use strict";const l=a(7849).buildOptions,n={attributeNamePrefix:"@_",attrNodeName:!1,textNodeName:"#text",ignoreAttributes:!0,cdataTagName:!1,cdataPositionChar:"\\c",format:!1,indentBy:"  ",supressEmptyNode:!1,tagValueProcessor:function(t){return t},attrValueProcessor:function(t){return t}},i=["attributeNamePrefix","attrNodeName","textNodeName","ignoreAttributes","cdataTagName","cdataPositionChar","format","indentBy","supressEmptyNode","tagValueProcessor","attrValueProcessor","rootNodeName"];function r(t){this.options=l(t,n,i),this.options.ignoreAttributes||this.options.attrNodeName?this.isAttribute=function(){return!1}:(this.attrPrefixLen=this.options.attributeNamePrefix.length,this.isAttribute=u),this.options.cdataTagName?this.isCDATA=p:this.isCDATA=function(){return!1},this.replaceCDATAstr=s,this.replaceCDATAarr=h,this.processTextOrObjNode=o,this.options.format?(this.indentate=m,this.tagEndChar=">\n",this.newLine="\n"):(this.indentate=function(){return""},this.tagEndChar=">",this.newLine=""),this.options.supressEmptyNode?(this.buildTextNode=v,this.buildObjNode=g):(this.buildTextNode=d,this.buildObjNode=c),this.buildTextValNode=d,this.buildObjectNode=c}function o(t,e,a){const l=this.j2x(t,a+1);return void 0!==t[this.options.textNodeName]&&1===Object.keys(t).length?this.buildTextNode(l.val,e,l.attrStr,a):this.buildObjNode(l.val,e,l.attrStr,a)}function s(t,e){return t=this.options.tagValueProcessor(""+t),""===this.options.cdataPositionChar||""===t?t+"<![CDATA["+e+"]]"+this.tagEndChar:t.replace(this.options.cdataPositionChar,"<![CDATA["+e+"]]"+this.tagEndChar)}function h(t,e){if(t=this.options.tagValueProcessor(""+t),""===this.options.cdataPositionChar||""===t)return t+"<![CDATA["+e.join("]]><![CDATA[")+"]]"+this.tagEndChar;for(let a in e)t=t.replace(this.options.cdataPositionChar,"<![CDATA["+e[a]+"]]>");return t+this.newLine}function c(t,e,a,l){return a&&-1===t.indexOf("<")?this.indentate(l)+"<"+e+a+">"+t+"</"+e+this.tagEndChar:this.indentate(l)+"<"+e+a+this.tagEndChar+t+this.indentate(l)+"</"+e+this.tagEndChar}function g(t,e,a,l){return""!==t?this.buildObjectNode(t,e,a,l):this.indentate(l)+"<"+e+a+"/"+this.tagEndChar}function d(t,e,a,l){return this.indentate(l)+"<"+e+a+">"+this.options.tagValueProcessor(t)+"</"+e+this.tagEndChar}function v(t,e,a,l){return""!==t?this.buildTextValNode(t,e,a,l):this.indentate(l)+"<"+e+a+"/"+this.tagEndChar}function m(t){return this.options.indentBy.repeat(t)}function u(t){return!!t.startsWith(this.options.attributeNamePrefix)&&t.substr(this.attrPrefixLen)}function p(t){return t===this.options.cdataTagName}r.prototype.parse=function(t){return Array.isArray(t)&&this.options.rootNodeName&&this.options.rootNodeName.length>1&&(t={[this.options.rootNodeName]:t}),this.j2x(t,0).val},r.prototype.j2x=function(t,e){let a="",l="";for(let n in t)if(void 0===t[n]);else if(null===t[n])l+=this.indentate(e)+"<"+n+"/"+this.tagEndChar;else if(t[n]instanceof Date)l+=this.buildTextNode(t[n],n,"",e);else if("object"!=typeof t[n]){const i=this.isAttribute(n);i?a+=" "+i+'="'+this.options.attrValueProcessor(""+t[n])+'"':this.isCDATA(n)?t[this.options.textNodeName]?l+=this.replaceCDATAstr(t[this.options.textNodeName],t[n]):l+=this.replaceCDATAstr("",t[n]):n===this.options.textNodeName?t[this.options.cdataTagName]||(l+=this.options.tagValueProcessor(""+t[n])):l+=this.buildTextNode(t[n],n,"",e)}else if(Array.isArray(t[n]))if(this.isCDATA(n))l+=this.indentate(e),t[this.options.textNodeName]?l+=this.replaceCDATAarr(t[this.options.textNodeName],t[n]):l+=this.replaceCDATAarr("",t[n]);else{const a=t[n].length;for(let i=0;i<a;i++){const a=t[n][i];void 0===a||(l+=null===a?this.indentate(e)+"<"+n+"/"+this.tagEndChar:"object"==typeof a?this.processTextOrObjNode(a,n,e):this.buildTextNode(a,n,"",e))}}else if(this.options.attrNodeName&&n===this.options.attrNodeName){const e=Object.keys(t[n]),l=e.length;for(let i=0;i<l;i++)a+=" "+e[i]+'="'+this.options.attrValueProcessor(""+t[n][e[i]])+'"'}else l+=this.processTextOrObjNode(t[n],n,e);return{attrStr:a,val:l}},t.exports=r},8398:function(t,e,a){"use strict";const l=function(t){return String.fromCharCode(t)},n={nilChar:l(176),missingChar:l(201),nilPremitive:l(175),missingPremitive:l(200),emptyChar:l(178),emptyValue:l(177),boundryChar:l(179),objStart:l(198),arrStart:l(204),arrayEnd:l(185)},i=[n.nilChar,n.nilPremitive,n.missingChar,n.missingPremitive,n.boundryChar,n.emptyChar,n.emptyValue,n.arrayEnd,n.objStart,n.arrStart],r=function(t,e,a){if("string"==typeof e)return t&&t[0]&&void 0!==t[0].val?o(t[0].val,e):o(t,e);{const i=void 0===(l=t)?n.missingChar:null===l?n.nilChar:!(l.child&&0===Object.keys(l.child).length&&(!l.attrsMap||0===Object.keys(l.attrsMap).length))||n.emptyChar;if(!0===i){let l="";if(Array.isArray(e)){l+=n.arrStart;const i=e[0],h=t.length;if("string"==typeof i)for(let e=0;e<h;e++){const a=o(t[e].val,i);l=s(l,a)}else for(let e=0;e<h;e++){const n=r(t[e],i,a);l=s(l,n)}l+=n.arrayEnd}else{l+=n.objStart;const i=Object.keys(e);Array.isArray(t)&&(t=t[0]);for(let n in i){const o=i[n];let h;h=!a.ignoreAttributes&&t.attrsMap&&t.attrsMap[o]?r(t.attrsMap[o],e[o],a):o===a.textNodeName?r(t.val,e[o],a):r(t.child[o],e[o],a),l=s(l,h)}}return l}return i}var l},o=function(t){switch(t){case void 0:return n.missingPremitive;case null:return n.nilPremitive;case"":return n.emptyValue;default:return t}},s=function(t,e){return h(e[0])||h(t[t.length-1])||(t+=n.boundryChar),t+e},h=function(t){return-1!==i.indexOf(t)},c=a(3543),g=a(7849).buildOptions;e.convert2nimn=function(t,e,a){return a=g(a,c.defaultOptions,c.props),r(t,e,a)}},284:function(t,e,a){"use strict";const l=a(7849),n=function(t,e,a){const i={};if(!e.alwaysCreateTextNode&&(!t.child||l.isEmptyObject(t.child))&&(!t.attrsMap||l.isEmptyObject(t.attrsMap)))return l.isExist(t.val)?t.val:"";if(l.isExist(t.val)&&("string"!=typeof t.val||""!==t.val&&t.val!==e.cdataPositionChar)){const n=l.isTagNameInArrayMode(t.tagname,e.arrayMode,a);i[e.textNodeName]=n?[t.val]:t.val}l.merge(i,t.attrsMap,e.arrayMode);const r=Object.keys(t.child);for(let o=0;o<r.length;o++){const s=r[o];if(t.child[s]&&t.child[s].length>1){i[s]=[];for(let a in t.child[s])t.child[s].hasOwnProperty(a)&&i[s].push(n(t.child[s][a],e,s))}else{const r=n(t.child[s][0],e,s),o=!0===e.arrayMode&&"object"==typeof r||l.isTagNameInArrayMode(s,e.arrayMode,a);i[s]=o?[r]:r}}return i};e.convertToJson=n},7702:function(t,e,a){"use strict";const l=a(7849),n=a(7849).buildOptions,i=a(3543),r=function(t,e,a){let n="{";const i=Object.keys(t.child);for(let a=0;a<i.length;a++){const l=i[a];if(t.child[l]&&t.child[l].length>1){n+='"'+l+'" : [ ';for(let a in t.child[l])n+=r(t.child[l][a],e)+" , ";n=n.substr(0,n.length-1)+" ] "}else n+='"'+l+'" : '+r(t.child[l][0],e)+" ,"}return l.merge(n,t.attrsMap),l.isEmptyObject(n)?l.isExist(t.val)?t.val:"":(l.isExist(t.val)&&("string"!=typeof t.val||""!==t.val&&t.val!==e.cdataPositionChar)&&(n+='"'+e.textNodeName+'" : '+(!0!==(o=t.val)&&!1!==o&&isNaN(o)?'"'+o+'"':o)),","===n[n.length-1]&&(n=n.substr(0,n.length-2)),n+"}");var o};e.convertToJsonString=function(t,e){return(e=n(e,i.defaultOptions,i.props)).indentBy=e.indentBy||"",r(t,e,0)}},6965:function(t,e,a){"use strict";const l=a(284),n=a(3543),i=a(3543),r=a(7849).buildOptions,o=a(8501);e.parse=function(t,e={},a){if(a){!0===a&&(a={});const e=o.validate(t,a);if(!0!==e)throw Error(e.err.msg)}e.parseTrueNumberOnly&&!1!==e.parseNodeValue&&!e.numParseOptions&&(e.numParseOptions={leadingZeros:!1});let s=r(e,i.defaultOptions,i.props);const h=n.getTraversalObj(t,s);return l.convertToJson(h,s)},e.convertTonimn=a(8398).convert2nimn,e.getTraversalObj=n.getTraversalObj,e.convertToJson=l.convertToJson,e.convertToJsonString=a(7702).convertToJsonString,e.validate=o.validate,e.j2xParser=a(259),e.parseToNimn=function(t,a,l){return e.convertTonimn(e.getTraversalObj(t,l),a,l)}},7849:function(t,e){"use strict";const a="[:A-Za-z_\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD][:A-Za-z_\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.\\d\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*",l=new RegExp("^"+a+"$");e.isExist=function(t){return void 0!==t},e.isEmptyObject=function(t){return 0===Object.keys(t).length},e.merge=function(t,e,a){if(e){const l=Object.keys(e),n=l.length;for(let i=0;i<n;i++)t[l[i]]="strict"===a?[e[l[i]]]:e[l[i]]}},e.getValue=function(t){return e.isExist(t)?t:""},e.buildOptions=function(t,e,a){let l={};if(!t)return e;for(let n=0;n<a.length;n++)void 0!==t[a[n]]?l[a[n]]=t[a[n]]:l[a[n]]=e[a[n]];return l},e.isTagNameInArrayMode=function(t,e,a){return!1!==e&&(e instanceof RegExp?e.test(t):"function"==typeof e?!!e(t,a):"strict"===e)},e.isName=function(t){return!(null==l.exec(t))},e.getAllMatches=function(t,e){const a=[];let l=e.exec(t);for(;l;){const n=[];n.startIndex=e.lastIndex-l[0].length;const i=l.length;for(let t=0;t<i;t++)n.push(l[t]);a.push(n),l=e.exec(t)}return a},e.nameRegexp=a},8501:function(t,e,a){"use strict";const l=a(7849),n={allowBooleanAttributes:!1},i=["allowBooleanAttributes"];function r(t,e){const a=e;for(;e<t.length;e++)if("?"!=t[e]&&" "!=t[e]);else{const l=t.substr(a,e-a);if(e>5&&"xml"===l)return d("InvalidXml","XML declaration allowed only at the start of the document.",m(t,e));if("?"==t[e]&&">"==t[e+1]){e++;break}}return e}function o(t,e){if(t.length>e+5&&"-"===t[e+1]&&"-"===t[e+2]){for(e+=3;e<t.length;e++)if("-"===t[e]&&"-"===t[e+1]&&">"===t[e+2]){e+=2;break}}else if(t.length>e+8&&"D"===t[e+1]&&"O"===t[e+2]&&"C"===t[e+3]&&"T"===t[e+4]&&"Y"===t[e+5]&&"P"===t[e+6]&&"E"===t[e+7]){let a=1;for(e+=8;e<t.length;e++)if("<"===t[e])a++;else if(">"===t[e]&&(a--,0===a))break}else if(t.length>e+9&&"["===t[e+1]&&"C"===t[e+2]&&"D"===t[e+3]&&"A"===t[e+4]&&"T"===t[e+5]&&"A"===t[e+6]&&"["===t[e+7])for(e+=8;e<t.length;e++)if("]"===t[e]&&"]"===t[e+1]&&">"===t[e+2]){e+=2;break}return e}function s(t,e){let a="",l="",n=!1;for(;e<t.length;e++){if('"'===t[e]||"'"===t[e])""===l?l=t[e]:l!==t[e]||(l="");else if(">"===t[e]&&""===l){n=!0;break}a+=t[e]}return""===l&&{value:a,index:e,tagClosed:n}}e.validate=function(t,e){e=l.buildOptions(e,n,i);const a=[];let h=!1,v=!1;"\ufeff"===t[0]&&(t=t.substr(1));for(let n=0;n<t.length;n++)if("<"===t[n]&&"?"===t[n+1]){if(n+=2,n=r(t,n),n.err)return n}else{if("<"!==t[n]){if(" "===t[n]||"\t"===t[n]||"\n"===t[n]||"\r"===t[n])continue;return d("InvalidChar","char '"+t[n]+"' is not expected.",m(t,n))}{let i=n;if(n++,"!"===t[n]){n=o(t,n);continue}{let p=!1;"/"===t[n]&&(p=!0,n++);let w="";for(;n<t.length&&">"!==t[n]&&" "!==t[n]&&"\t"!==t[n]&&"\n"!==t[n]&&"\r"!==t[n];n++)w+=t[n];if(w=w.trim(),"/"===w[w.length-1]&&(w=w.substring(0,w.length-1),n--),u=w,!l.isName(u)){let e;return e=0===w.trim().length?"Invalid space after '<'.":"Tag '"+w+"' is an invalid name.",d("InvalidTag",e,m(t,n))}const f=s(t,n);if(!1===f)return d("InvalidAttr","Attributes for '"+w+"' have open quote.",m(t,n));let b=f.value;if(n=f.index,"/"===b[b.length-1]){const a=n-b.length;b=b.substring(0,b.length-1);const l=c(b,e);if(!0!==l)return d(l.err.code,l.err.msg,m(t,a+l.err.line));h=!0}else if(p){if(!f.tagClosed)return d("InvalidTag","Closing tag '"+w+"' doesn't have proper closing.",m(t,n));if(b.trim().length>0)return d("InvalidTag","Closing tag '"+w+"' can't have attributes or invalid starting.",m(t,i));{const e=a.pop();if(w!==e.tagName){let a=m(t,e.tagStartPos);return d("InvalidTag","Expected closing tag '"+e.tagName+"' (opened in line "+a.line+", col "+a.col+") instead of closing tag '"+w+"'.",m(t,i))}0==a.length&&(v=!0)}}else{const l=c(b,e);if(!0!==l)return d(l.err.code,l.err.msg,m(t,n-b.length+l.err.line));if(!0===v)return d("InvalidXml","Multiple possible root nodes found.",m(t,n));a.push({tagName:w,tagStartPos:i}),h=!0}for(n++;n<t.length;n++)if("<"===t[n]){if("!"===t[n+1]){n++,n=o(t,n);continue}if("?"!==t[n+1])break;if(n=r(t,++n),n.err)return n}else if("&"===t[n]){const e=g(t,n);if(-1==e)return d("InvalidChar","char '&' is not expected.",m(t,n));n=e}"<"===t[n]&&n--}}}var u;return h?1==a.length?d("InvalidTag","Unclosed tag '"+a[0].tagName+"'.",m(t,a[0].tagStartPos)):!(a.length>0)||d("InvalidXml","Invalid '"+JSON.stringify(a.map((t=>t.tagName)),null,4).replace(/\r?\n/g,"")+"' found.",{line:1,col:1}):d("InvalidXml","Start tag expected.",1)};const h=new RegExp("(\\s*)([^\\s=]+)(\\s*=)?(\\s*(['\"])(([\\s\\S])*?)\\5)?","g");function c(t,e){const a=l.getAllMatches(t,h),n={};for(let t=0;t<a.length;t++){if(0===a[t][1].length)return d("InvalidAttr","Attribute '"+a[t][2]+"' has no space in starting.",u(a[t]));if(void 0===a[t][3]&&!e.allowBooleanAttributes)return d("InvalidAttr","boolean attribute '"+a[t][2]+"' is not allowed.",u(a[t]));const l=a[t][2];if(!v(l))return d("InvalidAttr","Attribute '"+l+"' is an invalid name.",u(a[t]));if(n.hasOwnProperty(l))return d("InvalidAttr","Attribute '"+l+"' is repeated.",u(a[t]));n[l]=1}return!0}function g(t,e){if(";"===t[++e])return-1;if("#"===t[e])return function(t,e){let a=/\d/;for("x"===t[e]&&(e++,a=/[\da-fA-F]/);e<t.length;e++){if(";"===t[e])return e;if(!t[e].match(a))break}return-1}(t,++e);let a=0;for(;e<t.length;e++,a++)if(!(t[e].match(/\w/)&&a<20)){if(";"===t[e])break;return-1}return e}function d(t,e,a){return{err:{code:t,msg:e,line:a.line||a,col:a.col}}}function v(t){return l.isName(t)}function m(t,e){const a=t.substring(0,e).split(/\r?\n/);return{line:a.length,col:a[a.length-1].length+1}}function u(t){return t.startIndex+t[1].length}},6468:function(t){"use strict";t.exports=function(t,e,a){this.tagname=t,this.parent=e,this.child={},this.attrsMap={},this.val=a,this.addChild=function(t){Array.isArray(this.child[t.tagname])?this.child[t.tagname].push(t):this.child[t.tagname]=[t]}}},3543:function(t,e,a){"use strict";const l=a(7849),n=a(7849).buildOptions,i=a(6468),r=a(4153);"<((!\\[CDATA\\[([\\s\\S]*?)(]]>))|((NAME:)?(NAME))([^>]*)>|((\\/)(NAME)\\s*>))([^<]*)".replace(/NAME/g,l.nameRegexp),!Number.parseInt&&window.parseInt&&(Number.parseInt=window.parseInt),!Number.parseFloat&&window.parseFloat&&(Number.parseFloat=window.parseFloat);const o={attributeNamePrefix:"@_",attrNodeName:!1,textNodeName:"#text",ignoreAttributes:!0,ignoreNameSpace:!1,allowBooleanAttributes:!1,parseNodeValue:!0,parseAttributeValue:!1,arrayMode:!1,trimValues:!0,cdataTagName:!1,cdataPositionChar:"\\c",numParseOptions:{hex:!0,leadingZeros:!0},tagValueProcessor:function(t,e){return t},attrValueProcessor:function(t,e){return t},stopNodes:[],alwaysCreateTextNode:!1};e.defaultOptions=o;const s=["attributeNamePrefix","attrNodeName","textNodeName","ignoreAttributes","ignoreNameSpace","allowBooleanAttributes","parseNodeValue","parseAttributeValue","arrayMode","trimValues","cdataTagName","cdataPositionChar","tagValueProcessor","attrValueProcessor","parseTrueNumberOnly","numParseOptions","stopNodes","alwaysCreateTextNode"];function h(t,e,a){return e&&(a.trimValues&&(e=e.trim()),e=g(e=a.tagValueProcessor(e,t),a.parseNodeValue,a.numParseOptions)),e}function c(t,e){if(e.ignoreNameSpace){const e=t.split(":"),a="/"===t.charAt(0)?"/":"";if("xmlns"===e[0])return"";2===e.length&&(t=a+e[1])}return t}function g(t,e,a){if(e&&"string"==typeof t){const e=t.trim();return"true"===e||"false"!==e&&r(t,a)}return l.isExist(t)?t:""}e.props=s;const d=new RegExp("([^\\s=]+)\\s*(=\\s*(['\"])(.*?)\\3)?","g");function v(t,e){if(!e.ignoreAttributes&&"string"==typeof t){t=t.replace(/\r?\n/g," ");const a=l.getAllMatches(t,d),n=a.length,i={};for(let t=0;t<n;t++){const l=c(a[t][1],e);l.length&&(void 0!==a[t][4]?(e.trimValues&&(a[t][4]=a[t][4].trim()),a[t][4]=e.attrValueProcessor(a[t][4],l),i[e.attributeNamePrefix+l]=g(a[t][4],e.parseAttributeValue,e.numParseOptions)):e.allowBooleanAttributes&&(i[e.attributeNamePrefix+l]=!0))}if(!Object.keys(i).length)return;if(e.attrNodeName){const t={};return t[e.attrNodeName]=i,t}return i}}function m(t,e){let a,l="";for(let n=e;n<t.length;n++){let e=t[n];if(a)e===a&&(a="");else if('"'===e||"'"===e)a=e;else{if(">"===e)return{data:l,index:n};"\t"===e&&(e=" ")}l+=e}}function u(t,e,a,l){const n=t.indexOf(e,a);if(-1===n)throw new Error(l);return n+e.length-1}e.getTraversalObj=function(t,e){t=t.replace(/\r\n?/g,"\n"),e=n(e,o,s);const a=new i("!xml");let r=a,c="";for(let a=0;a<t.length;a++)if("<"===t[a])if("/"===t[a+1]){const n=u(t,">",a,"Closing Tag is not closed.");let i=t.substring(a+2,n).trim();if(e.ignoreNameSpace){const t=i.indexOf(":");-1!==t&&(i=i.substr(t+1))}r&&(r.val?r.val=l.getValue(r.val)+""+h(i,c,e):r.val=h(i,c,e)),e.stopNodes.length&&e.stopNodes.includes(r.tagname)&&(r.child=[],null==r.attrsMap&&(r.attrsMap={}),r.val=t.substr(r.startIndex+1,a-r.startIndex-1)),r=r.parent,c="",a=n}else if("?"===t[a+1])a=u(t,"?>",a,"Pi Tag is not closed.");else if("!--"===t.substr(a+1,3))a=u(t,"--\x3e",a,"Comment is not closed.");else if("!D"===t.substr(a+1,2)){const e=u(t,">",a,"DOCTYPE is not closed.");a=t.substring(a,e).indexOf("[")>=0?t.indexOf("]>",a)+1:e}else if("!["===t.substr(a+1,2)){const n=u(t,"]]>",a,"CDATA is not closed.")-2,o=t.substring(a+9,n);if(c&&(r.val=l.getValue(r.val)+""+h(r.tagname,c,e),c=""),e.cdataTagName){const t=new i(e.cdataTagName,r,o);r.addChild(t),r.val=l.getValue(r.val)+e.cdataPositionChar,o&&(t.val=o)}else r.val=(r.val||"")+(o||"");a=n+2}else{const n=m(t,a+1);let o=n.data;const s=n.index,g=o.indexOf(" ");let d=o,u=!0;if(-1!==g&&(d=o.substr(0,g).replace(/\s\s*$/,""),o=o.substr(g+1)),e.ignoreNameSpace){const t=d.indexOf(":");-1!==t&&(d=d.substr(t+1),u=d!==n.data.substr(t+1))}if(r&&c&&"!xml"!==r.tagname&&(r.val=l.getValue(r.val)+""+h(r.tagname,c,e)),o.length>0&&o.lastIndexOf("/")===o.length-1){"/"===d[d.length-1]?(d=d.substr(0,d.length-1),o=d):o=o.substr(0,o.length-1);const t=new i(d,r,"");d!==o&&(t.attrsMap=v(o,e)),r.addChild(t)}else{const t=new i(d,r);e.stopNodes.length&&e.stopNodes.includes(t.tagname)&&(t.startIndex=s),d!==o&&u&&(t.attrsMap=v(o,e)),r.addChild(t),r=t}c="",a=s}else c+=t[a];return a}},885:function(t){t.exports={CASE_SENSITIVE_TAG_NAMES:["animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussainBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","linearGradient","radialGradient","textPath"]}},8276:function(t){var e="html",a="head",l="body",n=/<([a-zA-Z]+[0-9]?)/,i=/<head.*>/i,r=/<body.*>/i,o=function(){throw new Error("This browser does not support `document.implementation.createHTMLDocument`")},s=function(){throw new Error("This browser does not support `DOMParser.prototype.parseFromString`")};if("function"==typeof window.DOMParser){var h=new window.DOMParser;o=s=function(t,e){return e&&(t="<"+e+">"+t+"</"+e+">"),h.parseFromString(t,"text/html")}}if(document.implementation){var c=document.implementation.createHTMLDocument();o=function(t,e){return e?(c.documentElement.getElementsByTagName(e)[0].innerHTML=t,c):(c.documentElement.innerHTML=t,c)}}var g,d=document.createElement("template");d.content&&(g=function(t){return d.innerHTML=t,d.content.childNodes}),t.exports=function(t){var h,c,d,v,m=t.match(n);switch(m&&m[1]&&(h=m[1].toLowerCase()),h){case e:return c=s(t),i.test(t)||(d=c.getElementsByTagName(a)[0])&&d.parentNode.removeChild(d),r.test(t)||(d=c.getElementsByTagName(l)[0])&&d.parentNode.removeChild(d),c.getElementsByTagName(e);case a:case l:return v=o(t).getElementsByTagName(h),r.test(t)&&i.test(t)?v[0].parentNode.childNodes:v;default:return g?g(t):o(t,l).getElementsByTagName(l)[0].childNodes}}},4152:function(t,e,a){var l=a(8276),n=a(1507).formatDOM,i=/<(![a-zA-Z\s]+)>/;t.exports=function(t){if("string"!=typeof t)throw new TypeError("First argument must be a string");if(""===t)return[];var e,a=t.match(i);return a&&a[1]&&(e=a[1]),n(l(t),null,e)}},1507:function(t,e,a){for(var l,n=a(885),i=a(1642),r=n.CASE_SENSITIVE_TAG_NAMES,o=i.Comment,s=i.Element,h=i.ProcessingInstruction,c=i.Text,g={},d=0,v=r.length;d<v;d++)l=r[d],g[l.toLowerCase()]=l;function m(t){for(var e,a={},l=0,n=t.length;l<n;l++)a[(e=t[l]).name]=e.value;return a}function u(t){return function(t){return g[t]}(t=t.toLowerCase())||t}t.exports={formatAttributes:m,formatDOM:function t(e,a,l){a=a||null;for(var n=[],i=0,r=e.length;i<r;i++){var g,d=e[i];switch(d.nodeType){case 1:(g=new s(u(d.nodeName),m(d.attributes))).children=t(d.childNodes,g);break;case 3:g=new c(d.nodeValue);break;case 8:g=new o(d.nodeValue);break;default:continue}var v=n[i-1]||null;v&&(v.next=g),g.parent=a,g.prev=v,g.next=null,n.push(g)}return l&&((g=new h(l.substring(0,l.indexOf(" ")).toLowerCase(),l)).next=n[0]||null,g.parent=a,n.unshift(g),n[1]&&(n[1].prev=n[0])),n}}},1642:function(t,e,a){"use strict";var l,n=this&&this.__extends||(l=function(t,e){return l=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var a in e)Object.prototype.hasOwnProperty.call(e,a)&&(t[a]=e[a])},l(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function __(){this.constructor=t}l(t,e),t.prototype=null===e?Object.create(e):(__.prototype=e.prototype,new __)}),i=this&&this.__assign||function(){return i=Object.assign||function(t){for(var e,a=1,l=arguments.length;a<l;a++)for(var n in e=arguments[a])Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t},i.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.cloneNode=e.hasChildren=e.isDocument=e.isDirective=e.isComment=e.isText=e.isCDATA=e.isTag=e.Element=e.Document=e.NodeWithChildren=e.ProcessingInstruction=e.Comment=e.Text=e.DataNode=e.Node=void 0;var r=a(9960),o=new Map([[r.ElementType.Tag,1],[r.ElementType.Script,1],[r.ElementType.Style,1],[r.ElementType.Directive,1],[r.ElementType.Text,3],[r.ElementType.CDATA,4],[r.ElementType.Comment,8],[r.ElementType.Root,9]]),s=function(){function t(t){this.type=t,this.parent=null,this.prev=null,this.next=null,this.startIndex=null,this.endIndex=null}return Object.defineProperty(t.prototype,"nodeType",{get:function(){var t;return null!==(t=o.get(this.type))&&void 0!==t?t:1},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"parentNode",{get:function(){return this.parent},set:function(t){this.parent=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"previousSibling",{get:function(){return this.prev},set:function(t){this.prev=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"nextSibling",{get:function(){return this.next},set:function(t){this.next=t},enumerable:!1,configurable:!0}),t.prototype.cloneNode=function(t){return void 0===t&&(t=!1),z(this,t)},t}();e.Node=s;var h=function(t){function e(e,a){var l=t.call(this,e)||this;return l.data=a,l}return n(e,t),Object.defineProperty(e.prototype,"nodeValue",{get:function(){return this.data},set:function(t){this.data=t},enumerable:!1,configurable:!0}),e}(s);e.DataNode=h;var c=function(t){function e(e){return t.call(this,r.ElementType.Text,e)||this}return n(e,t),e}(h);e.Text=c;var g=function(t){function e(e){return t.call(this,r.ElementType.Comment,e)||this}return n(e,t),e}(h);e.Comment=g;var d=function(t){function e(e,a){var l=t.call(this,r.ElementType.Directive,a)||this;return l.name=e,l}return n(e,t),e}(h);e.ProcessingInstruction=d;var v=function(t){function e(e,a){var l=t.call(this,e)||this;return l.children=a,l}return n(e,t),Object.defineProperty(e.prototype,"firstChild",{get:function(){var t;return null!==(t=this.children[0])&&void 0!==t?t:null},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"lastChild",{get:function(){return this.children.length>0?this.children[this.children.length-1]:null},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"childNodes",{get:function(){return this.children},set:function(t){this.children=t},enumerable:!1,configurable:!0}),e}(s);e.NodeWithChildren=v;var m=function(t){function e(e){return t.call(this,r.ElementType.Root,e)||this}return n(e,t),e}(v);e.Document=m;var u=function(t){function e(e,a,l,n){void 0===l&&(l=[]),void 0===n&&(n="script"===e?r.ElementType.Script:"style"===e?r.ElementType.Style:r.ElementType.Tag);var i=t.call(this,n,l)||this;return i.name=e,i.attribs=a,i}return n(e,t),Object.defineProperty(e.prototype,"tagName",{get:function(){return this.name},set:function(t){this.name=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"attributes",{get:function(){var t=this;return Object.keys(this.attribs).map((function(e){var a,l;return{name:e,value:t.attribs[e],namespace:null===(a=t["x-attribsNamespace"])||void 0===a?void 0:a[e],prefix:null===(l=t["x-attribsPrefix"])||void 0===l?void 0:l[e]}}))},enumerable:!1,configurable:!0}),e}(v);function p(t){return(0,r.isTag)(t)}function w(t){return t.type===r.ElementType.CDATA}function f(t){return t.type===r.ElementType.Text}function b(t){return t.type===r.ElementType.Comment}function x(t){return t.type===r.ElementType.Directive}function y(t){return t.type===r.ElementType.Root}function z(t,e){var a;if(void 0===e&&(e=!1),f(t))a=new c(t.data);else if(b(t))a=new g(t.data);else if(p(t)){var l=e?C(t.children):[],n=new u(t.name,i({},t.attribs),l);l.forEach((function(t){return t.parent=n})),null!=t.namespace&&(n.namespace=t.namespace),t["x-attribsNamespace"]&&(n["x-attribsNamespace"]=i({},t["x-attribsNamespace"])),t["x-attribsPrefix"]&&(n["x-attribsPrefix"]=i({},t["x-attribsPrefix"])),a=n}else if(w(t)){l=e?C(t.children):[];var o=new v(r.ElementType.CDATA,l);l.forEach((function(t){return t.parent=o})),a=o}else if(y(t)){l=e?C(t.children):[];var s=new m(l);l.forEach((function(t){return t.parent=s})),t["x-mode"]&&(s["x-mode"]=t["x-mode"]),a=s}else{if(!x(t))throw new Error("Not implemented yet: ".concat(t.type));var h=new d(t.name,t.data);null!=t["x-name"]&&(h["x-name"]=t["x-name"],h["x-publicId"]=t["x-publicId"],h["x-systemId"]=t["x-systemId"]),a=h}return a.startIndex=t.startIndex,a.endIndex=t.endIndex,null!=t.sourceCodeLocation&&(a.sourceCodeLocation=t.sourceCodeLocation),a}function C(t){for(var e=t.map((function(t){return z(t,!0)})),a=1;a<e.length;a++)e[a].prev=e[a-1],e[a-1].next=e[a];return e}e.Element=u,e.isTag=p,e.isCDATA=w,e.isText=f,e.isComment=b,e.isDirective=x,e.isDocument=y,e.hasChildren=function(t){return Object.prototype.hasOwnProperty.call(t,"children")},e.cloneNode=z},488:function(t,e,a){var l=a(3670),n=a(484),i=a(4152);i="function"==typeof i.default?i.default:i;var r={lowerCaseAttributeNames:!1};function o(t,e){if("string"!=typeof t)throw new TypeError("First argument must be a string");return""===t?[]:l(i(t,(e=e||{}).htmlparser2||r),e)}o.domToReact=l,o.htmlToDOM=i,o.attributesToProps=n,o.Element=a(7384).Element,t.exports=o,t.exports.default=o},484:function(t,e,a){var l=a(5726),n=a(4606);function i(t){return l.possibleStandardNames[t]}t.exports=function(t){var e,a,r,o,s,h={},c=(t=t||{}).type&&{reset:!0,submit:!0}[t.type];for(e in t)if(r=t[e],l.isCustomAttribute(e))h[e]=r;else if(o=i(a=e.toLowerCase()))switch(s=l.getPropertyInfo(o),"checked"!==o&&"value"!==o||c||(o=i("default"+a)),h[o]=r,s&&s.type){case l.BOOLEAN:h[o]=!0;break;case l.OVERLOADED_BOOLEAN:""===r&&(h[o]=!0)}else n.PRESERVE_CUSTOM_ATTRIBUTES&&(h[e]=r);return n.setStyleProp(t.style,h),h}},3670:function(t,e,a){var l=a(9196),n=a(484),i=a(4606),r=i.setStyleProp,o=i.canTextBeChildOfNode;function s(t){return i.PRESERVE_CUSTOM_ATTRIBUTES&&"tag"===t.type&&i.isCustomComponent(t.name,t.attribs)}t.exports=function t(e,a){for(var i,h,c,g,d,v=(a=a||{}).library||l,m=v.cloneElement,u=v.createElement,p=v.isValidElement,w=[],f="function"==typeof a.replace,b=a.trim,x=0,y=e.length;x<y;x++)if(i=e[x],f&&p(c=a.replace(i)))y>1&&(c=m(c,{key:c.key||x})),w.push(c);else if("text"!==i.type){switch(g=i.attribs,s(i)?r(g.style,g):g&&(g=n(g)),d=null,i.type){case"script":case"style":i.children[0]&&(g.dangerouslySetInnerHTML={__html:i.children[0].data});break;case"tag":"textarea"===i.name&&i.children[0]?g.defaultValue=i.children[0].data:i.children&&i.children.length&&(d=t(i.children,a));break;default:continue}y>1&&(g.key=x),w.push(u(i.name,g,d))}else{if((h=!i.data.trim().length)&&i.parent&&!o(i.parent))continue;if(b&&h)continue;w.push(i.data)}return 1===w.length?w[0]:w}},4606:function(t,e,a){var l=a(9196),n=a(1476).default,i={reactCompat:!0},r=l.version.split(".")[0]>=16,o=new Set(["tr","tbody","thead","tfoot","colgroup","table","head","html","frameset"]);t.exports={PRESERVE_CUSTOM_ATTRIBUTES:r,invertObject:function(t,e){if(!t||"object"!=typeof t)throw new TypeError("First argument must be an object");var a,l,n="function"==typeof e,i={},r={};for(a in t)l=t[a],n&&(i=e(a,l))&&2===i.length?r[i[0]]=i[1]:"string"==typeof l&&(r[l]=a);return r},isCustomComponent:function(t,e){if(-1===t.indexOf("-"))return e&&"string"==typeof e.is;switch(t){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}},setStyleProp:function(t,e){if(null!=t)try{e.style=n(t,i)}catch(t){e.style={}}},canTextBeChildOfNode:function(t){return!o.has(t.name)},elementsWithNoTextChildren:o}},7384:function(t,e,a){"use strict";var l=this&&this.__createBinding||(Object.create?function(t,e,a,l){void 0===l&&(l=a);var n=Object.getOwnPropertyDescriptor(e,a);n&&!("get"in n?!e.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return e[a]}}),Object.defineProperty(t,l,n)}:function(t,e,a,l){void 0===l&&(l=a),t[l]=e[a]}),n=this&&this.__exportStar||function(t,e){for(var a in t)"default"===a||Object.prototype.hasOwnProperty.call(e,a)||l(e,t,a)};Object.defineProperty(e,"__esModule",{value:!0}),e.DomHandler=void 0;var i=a(9960),r=a(5079);n(a(5079),e);var o=/\s+/g,s={normalizeWhitespace:!1,withStartIndices:!1,withEndIndices:!1,xmlMode:!1},h=function(){function t(t,e,a){this.dom=[],this.root=new r.Document(this.dom),this.done=!1,this.tagStack=[this.root],this.lastNode=null,this.parser=null,"function"==typeof e&&(a=e,e=s),"object"==typeof t&&(e=t,t=void 0),this.callback=null!=t?t:null,this.options=null!=e?e:s,this.elementCB=null!=a?a:null}return t.prototype.onparserinit=function(t){this.parser=t},t.prototype.onreset=function(){this.dom=[],this.root=new r.Document(this.dom),this.done=!1,this.tagStack=[this.root],this.lastNode=null,this.parser=null},t.prototype.onend=function(){this.done||(this.done=!0,this.parser=null,this.handleCallback(null))},t.prototype.onerror=function(t){this.handleCallback(t)},t.prototype.onclosetag=function(){this.lastNode=null;var t=this.tagStack.pop();this.options.withEndIndices&&(t.endIndex=this.parser.endIndex),this.elementCB&&this.elementCB(t)},t.prototype.onopentag=function(t,e){var a=this.options.xmlMode?i.ElementType.Tag:void 0,l=new r.Element(t,e,void 0,a);this.addNode(l),this.tagStack.push(l)},t.prototype.ontext=function(t){var e=this.options.normalizeWhitespace,a=this.lastNode;if(a&&a.type===i.ElementType.Text)e?a.data=(a.data+t).replace(o," "):a.data+=t,this.options.withEndIndices&&(a.endIndex=this.parser.endIndex);else{e&&(t=t.replace(o," "));var l=new r.Text(t);this.addNode(l),this.lastNode=l}},t.prototype.oncomment=function(t){if(this.lastNode&&this.lastNode.type===i.ElementType.Comment)this.lastNode.data+=t;else{var e=new r.Comment(t);this.addNode(e),this.lastNode=e}},t.prototype.oncommentend=function(){this.lastNode=null},t.prototype.oncdatastart=function(){var t=new r.Text(""),e=new r.NodeWithChildren(i.ElementType.CDATA,[t]);this.addNode(e),t.parent=e,this.lastNode=t},t.prototype.oncdataend=function(){this.lastNode=null},t.prototype.onprocessinginstruction=function(t,e){var a=new r.ProcessingInstruction(t,e);this.addNode(a)},t.prototype.handleCallback=function(t){if("function"==typeof this.callback)this.callback(t,this.dom);else if(t)throw t},t.prototype.addNode=function(t){var e=this.tagStack[this.tagStack.length-1],a=e.children[e.children.length-1];this.options.withStartIndices&&(t.startIndex=this.parser.startIndex),this.options.withEndIndices&&(t.endIndex=this.parser.endIndex),e.children.push(t),a&&(t.prev=a,a.next=t),t.parent=e,this.lastNode=null},t}();e.DomHandler=h,e.default=h},5079:function(t,e,a){"use strict";var l,n=this&&this.__extends||(l=function(t,e){return l=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var a in e)Object.prototype.hasOwnProperty.call(e,a)&&(t[a]=e[a])},l(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function __(){this.constructor=t}l(t,e),t.prototype=null===e?Object.create(e):(__.prototype=e.prototype,new __)}),i=this&&this.__assign||function(){return i=Object.assign||function(t){for(var e,a=1,l=arguments.length;a<l;a++)for(var n in e=arguments[a])Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t},i.apply(this,arguments)};Object.defineProperty(e,"__esModule",{value:!0}),e.cloneNode=e.hasChildren=e.isDocument=e.isDirective=e.isComment=e.isText=e.isCDATA=e.isTag=e.Element=e.Document=e.NodeWithChildren=e.ProcessingInstruction=e.Comment=e.Text=e.DataNode=e.Node=void 0;var r=a(9960),o=new Map([[r.ElementType.Tag,1],[r.ElementType.Script,1],[r.ElementType.Style,1],[r.ElementType.Directive,1],[r.ElementType.Text,3],[r.ElementType.CDATA,4],[r.ElementType.Comment,8],[r.ElementType.Root,9]]),s=function(){function t(t){this.type=t,this.parent=null,this.prev=null,this.next=null,this.startIndex=null,this.endIndex=null}return Object.defineProperty(t.prototype,"nodeType",{get:function(){var t;return null!==(t=o.get(this.type))&&void 0!==t?t:1},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"parentNode",{get:function(){return this.parent},set:function(t){this.parent=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"previousSibling",{get:function(){return this.prev},set:function(t){this.prev=t},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"nextSibling",{get:function(){return this.next},set:function(t){this.next=t},enumerable:!1,configurable:!0}),t.prototype.cloneNode=function(t){return void 0===t&&(t=!1),z(this,t)},t}();e.Node=s;var h=function(t){function e(e,a){var l=t.call(this,e)||this;return l.data=a,l}return n(e,t),Object.defineProperty(e.prototype,"nodeValue",{get:function(){return this.data},set:function(t){this.data=t},enumerable:!1,configurable:!0}),e}(s);e.DataNode=h;var c=function(t){function e(e){return t.call(this,r.ElementType.Text,e)||this}return n(e,t),e}(h);e.Text=c;var g=function(t){function e(e){return t.call(this,r.ElementType.Comment,e)||this}return n(e,t),e}(h);e.Comment=g;var d=function(t){function e(e,a){var l=t.call(this,r.ElementType.Directive,a)||this;return l.name=e,l}return n(e,t),e}(h);e.ProcessingInstruction=d;var v=function(t){function e(e,a){var l=t.call(this,e)||this;return l.children=a,l}return n(e,t),Object.defineProperty(e.prototype,"firstChild",{get:function(){var t;return null!==(t=this.children[0])&&void 0!==t?t:null},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"lastChild",{get:function(){return this.children.length>0?this.children[this.children.length-1]:null},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"childNodes",{get:function(){return this.children},set:function(t){this.children=t},enumerable:!1,configurable:!0}),e}(s);e.NodeWithChildren=v;var m=function(t){function e(e){return t.call(this,r.ElementType.Root,e)||this}return n(e,t),e}(v);e.Document=m;var u=function(t){function e(e,a,l,n){void 0===l&&(l=[]),void 0===n&&(n="script"===e?r.ElementType.Script:"style"===e?r.ElementType.Style:r.ElementType.Tag);var i=t.call(this,n,l)||this;return i.name=e,i.attribs=a,i}return n(e,t),Object.defineProperty(e.prototype,"tagName",{get:function(){return this.name},set:function(t){this.name=t},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"attributes",{get:function(){var t=this;return Object.keys(this.attribs).map((function(e){var a,l;return{name:e,value:t.attribs[e],namespace:null===(a=t["x-attribsNamespace"])||void 0===a?void 0:a[e],prefix:null===(l=t["x-attribsPrefix"])||void 0===l?void 0:l[e]}}))},enumerable:!1,configurable:!0}),e}(v);function p(t){return(0,r.isTag)(t)}function w(t){return t.type===r.ElementType.CDATA}function f(t){return t.type===r.ElementType.Text}function b(t){return t.type===r.ElementType.Comment}function x(t){return t.type===r.ElementType.Directive}function y(t){return t.type===r.ElementType.Root}function z(t,e){var a;if(void 0===e&&(e=!1),f(t))a=new c(t.data);else if(b(t))a=new g(t.data);else if(p(t)){var l=e?C(t.children):[],n=new u(t.name,i({},t.attribs),l);l.forEach((function(t){return t.parent=n})),null!=t.namespace&&(n.namespace=t.namespace),t["x-attribsNamespace"]&&(n["x-attribsNamespace"]=i({},t["x-attribsNamespace"])),t["x-attribsPrefix"]&&(n["x-attribsPrefix"]=i({},t["x-attribsPrefix"])),a=n}else if(w(t)){l=e?C(t.children):[];var o=new v(r.ElementType.CDATA,l);l.forEach((function(t){return t.parent=o})),a=o}else if(y(t)){l=e?C(t.children):[];var s=new m(l);l.forEach((function(t){return t.parent=s})),t["x-mode"]&&(s["x-mode"]=t["x-mode"]),a=s}else{if(!x(t))throw new Error("Not implemented yet: ".concat(t.type));var h=new d(t.name,t.data);null!=t["x-name"]&&(h["x-name"]=t["x-name"],h["x-publicId"]=t["x-publicId"],h["x-systemId"]=t["x-systemId"]),a=h}return a.startIndex=t.startIndex,a.endIndex=t.endIndex,null!=t.sourceCodeLocation&&(a.sourceCodeLocation=t.sourceCodeLocation),a}function C(t){for(var e=t.map((function(t){return z(t,!0)})),a=1;a<e.length;a++)e[a].prev=e[a-1],e[a-1].next=e[a];return e}e.Element=u,e.isTag=p,e.isCDATA=w,e.isText=f,e.isComment=b,e.isDirective=x,e.isDocument=y,e.hasChildren=function(t){return Object.prototype.hasOwnProperty.call(t,"children")},e.cloneNode=z},8139:function(t){var e=/\/\*[^*]*\*+([^/*][^*]*\*+)*\//g,a=/\n/g,l=/^\s*/,n=/^(\*?[-#/*\\\w]+(\[[0-9a-z_-]+\])?)\s*/,i=/^:\s*/,r=/^((?:'(?:\\'|.)*?'|"(?:\\"|.)*?"|\([^)]*?\)|[^};])+)/,o=/^[;\s]*/,s=/^\s+|\s+$/g,h="";function c(t){return t?t.replace(s,h):h}t.exports=function(t,s){if("string"!=typeof t)throw new TypeError("First argument must be a string");if(!t)return[];s=s||{};var g=1,d=1;function v(t){var e=t.match(a);e&&(g+=e.length);var l=t.lastIndexOf("\n");d=~l?t.length-l:d+t.length}function m(){var t={line:g,column:d};return function(e){return e.position=new u(t),b(),e}}function u(t){this.start=t,this.end={line:g,column:d},this.source=s.source}u.prototype.content=t;var p=[];function w(e){var a=new Error(s.source+":"+g+":"+d+": "+e);if(a.reason=e,a.filename=s.source,a.line=g,a.column=d,a.source=t,!s.silent)throw a;p.push(a)}function f(e){var a=e.exec(t);if(a){var l=a[0];return v(l),t=t.slice(l.length),a}}function b(){f(l)}function x(t){var e;for(t=t||[];e=y();)!1!==e&&t.push(e);return t}function y(){var e=m();if("/"==t.charAt(0)&&"*"==t.charAt(1)){for(var a=2;h!=t.charAt(a)&&("*"!=t.charAt(a)||"/"!=t.charAt(a+1));)++a;if(a+=2,h===t.charAt(a-1))return w("End of comment missing");var l=t.slice(2,a-2);return d+=2,v(l),t=t.slice(a),d+=2,e({type:"comment",comment:l})}}function z(){var t=m(),a=f(n);if(a){if(y(),!f(i))return w("property missing ':'");var l=f(r),s=t({type:"declaration",property:c(a[0].replace(e,h)),value:l?c(l[0].replace(e,h)):h});return f(o),s}}return b(),function(){var t,e=[];for(x(e);t=z();)!1!==t&&(e.push(t),x(e));return e}()}},1143:function(t){"use strict";t.exports=function(t,e,a,l,n,i,r,o){if(!t){var s;if(void 0===e)s=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var h=[a,l,n,i,r,o],c=0;(s=new Error(e.replace(/%s/g,(function(){return h[c++]})))).name="Invariant Violation"}throw s.framesToPop=1,s}}},1487:function(t,e,a){"use strict";const l=a(6965),n=t=>{if(null==t)return!1;if(0===(t=t.toString().trim().replace(/\n/g," ")).length)return!1;if(!0!==l.validate(t))return!1;let e;try{e=l.parse(t)}catch(t){return!1}return!!e&&"svg"in e};t.exports=n,t.exports.default=n},2705:function(t,e,a){var l=a(5639).Symbol;t.exports=l},9932:function(t){t.exports=function(t,e){for(var a=-1,l=null==t?0:t.length,n=Array(l);++a<l;)n[a]=e(t[a],a,t);return n}},4239:function(t,e,a){var l=a(2705),n=a(9607),i=a(2333),r=l?l.toStringTag:void 0;t.exports=function(t){return null==t?void 0===t?"[object Undefined]":"[object Null]":r&&r in Object(t)?n(t):i(t)}},531:function(t,e,a){var l=a(2705),n=a(9932),i=a(1469),r=a(3448),o=l?l.prototype:void 0,s=o?o.toString:void 0;t.exports=function t(e){if("string"==typeof e)return e;if(i(e))return n(e,t)+"";if(r(e))return s?s.call(e):"";var a=e+"";return"0"==a&&1/e==-1/0?"-0":a}},1957:function(t,e,a){var l="object"==typeof a.g&&a.g&&a.g.Object===Object&&a.g;t.exports=l},9607:function(t,e,a){var l=a(2705),n=Object.prototype,i=n.hasOwnProperty,r=n.toString,o=l?l.toStringTag:void 0;t.exports=function(t){var e=i.call(t,o),a=t[o];try{t[o]=void 0;var l=!0}catch(t){}var n=r.call(t);return l&&(e?t[o]=a:delete t[o]),n}},2333:function(t){var e=Object.prototype.toString;t.exports=function(t){return e.call(t)}},5639:function(t,e,a){var l=a(1957),n="object"==typeof self&&self&&self.Object===Object&&self,i=l||n||Function("return this")();t.exports=i},1469:function(t){var e=Array.isArray;t.exports=e},7005:function(t){t.exports=function(t){return null!=t&&"object"==typeof t}},3448:function(t,e,a){var l=a(4239),n=a(7005);t.exports=function(t){return"symbol"==typeof t||n(t)&&"[object Symbol]"==l(t)}},9833:function(t,e,a){var l=a(531);t.exports=function(t){return null==t?"":l(t)}},3955:function(t,e,a){var l=a(9833),n=0;t.exports=function(t){var e=++n;return l(t)+e}},2703:function(t,e,a){"use strict";var l=a(414);function n(){}function i(){}i.resetWarningCache=n,t.exports=function(){function t(t,e,a,n,i,r){if(r!==l){var o=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw o.name="Invariant Violation",o}}function e(){return t}t.isRequired=t;var a={array:t,bigint:t,bool:t,func:t,number:t,object:t,string:t,symbol:t,any:t,arrayOf:e,element:t,elementType:t,instanceOf:e,node:t,objectOf:e,oneOf:e,oneOfType:e,shape:e,exact:e,checkPropTypes:i,resetWarningCache:n};return a.PropTypes=a,a}},5697:function(t,e,a){t.exports=a(2703)()},414:function(t){"use strict";t.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},7857:function(t,e,a){"use strict";var l=a(9196),n=a(8273);function i(t){return t&&"object"==typeof t&&"default"in t?t:{default:t}}var r=i(l);function o(t,e){var a=Object.keys(t);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(t);e&&(l=l.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),a.push.apply(a,l)}return a}function s(t){for(var e=1;e<arguments.length;e++){var a=null!=arguments[e]?arguments[e]:{};e%2?o(Object(a),!0).forEach((function(e){h(t,e,a[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(a)):o(Object(a)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(a,e))}))}return t}function h(t,e,a){return e in t?Object.defineProperty(t,e,{value:a,enumerable:!0,configurable:!0,writable:!0}):t[e]=a,t}function c(){return c=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var a=arguments[e];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(t[l]=a[l])}return t},c.apply(this,arguments)}function g(t,e){if(null==t)return{};var a,l,n=function(t,e){if(null==t)return{};var a,l,n={},i=Object.keys(t);for(l=0;l<i.length;l++)a=i[l],e.indexOf(a)>=0||(n[a]=t[a]);return n}(t,e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);for(l=0;l<i.length;l++)a=i[l],e.indexOf(a)>=0||Object.prototype.propertyIsEnumerable.call(t,a)&&(n[a]=t[a])}return n}var d="undefined"!=typeof window&&void 0!==window.document&&void 0!==window.document.createElement?l.useLayoutEffect:l.useEffect;function v(t){var e=l.useRef(t);return d((function(){e.current=t})),l.useCallback((function(){for(var t=arguments.length,a=new Array(t),l=0;l<t;l++)a[l]=arguments[l];return e.current.apply(void 0,a)}),[])}var m=["ref","startOnMount","enableReinitialize","delay","onEnd","onStart","onPauseResume","onReset","onUpdate"],u={decimal:".",delay:null,prefix:"",suffix:"",duration:2,start:0,startOnMount:!0,enableReinitialize:!0},p=["className","redraw","containerProps","children","style"];e.ZP=function(t){var e=t.className,a=t.redraw,i=t.containerProps,o=t.children,h=t.style,d=g(t,p),w=r.default.useRef(null),f=r.default.useRef(!1),b=function(t){var e=l.useMemo((function(){return s(s({},u),t)}),[t]),a=e.ref,i=e.startOnMount,r=e.enableReinitialize,o=e.delay,h=e.onEnd,c=e.onStart,d=e.onPauseResume,p=e.onReset,w=e.onUpdate,f=g(e,m),b=l.useRef(),x=l.useRef(),y=l.useRef(!1),z=v((function(){return function(t,e){var a=e.decimal,l=e.decimals,i=e.duration,r=e.easingFn,o=e.end,s=e.formattingFn,h=e.numerals,c=e.prefix,g=e.separator,d=e.start,v=e.suffix,m=e.useEasing,u=e.enableScrollSpy,p=e.scrollSpyDelay;return new n.CountUp(t,o,{startVal:d,duration:i,decimal:a,decimalPlaces:l,easingFn:r,formattingFn:s,numerals:h,separator:g,prefix:c,suffix:v,useEasing:m,useGrouping:!!g,enableScrollSpy:u,scrollSpyDelay:p})}("string"==typeof a?a:a.current,f)})),C=v((function(t){var e=b.current;if(e&&!t)return e;var a=z();return b.current=a,a})),V=v((function(){var t=function(){return C(!0).start((function(){null==h||h({pauseResume:H,reset:M,start:k,update:E})}))};o&&o>0?x.current=setTimeout(t,1e3*o):t(),null==c||c({pauseResume:H,reset:M,update:E})})),H=v((function(){C().pauseResume(),null==d||d({reset:M,start:k,update:E})})),M=v((function(){x.current&&clearTimeout(x.current),C().reset(),null==p||p({pauseResume:H,start:k,update:E})})),E=v((function(t){C().update(t),null==w||w({pauseResume:H,reset:M,start:k})})),k=v((function(){M(),V()})),_=v((function(t){i&&(t&&M(),V())}));return l.useEffect((function(){y.current?r&&_(!0):(y.current=!0,_())}),[r,y,_,o,t.start,t.suffix,t.prefix,t.duration,t.separator,t.decimals,t.decimal,t.formattingFn]),l.useEffect((function(){return function(){M()}}),[M]),{start:k,pauseResume:H,reset:M,update:E,getCountUp:C}}(s(s({},d),{},{ref:w,startOnMount:"function"!=typeof o||0===t.delay,enableReinitialize:!1})),x=b.start,y=b.reset,z=b.update,C=b.pauseResume,V=b.getCountUp,H=v((function(){x()})),M=v((function(e){t.preserveValue||y(),z(e)})),E=v((function(){"function"!=typeof t.children||w.current instanceof Element?V():console.error('Couldn\'t find attached element to hook the CountUp instance into! Try to attach "containerRef" from the render prop to a an Element, eg. <span ref={containerRef} />.')}));l.useEffect((function(){E()}),[E]),l.useEffect((function(){f.current&&M(t.end)}),[t.end,M]);var k=a&&t;return l.useEffect((function(){a&&f.current&&H()}),[H,a,k]),l.useEffect((function(){!a&&f.current&&H()}),[H,a,t.start,t.suffix,t.prefix,t.duration,t.separator,t.decimals,t.decimal,t.className,t.formattingFn]),l.useEffect((function(){f.current=!0}),[]),"function"==typeof o?o({countUpRef:w,start:x,reset:y,update:z,pauseResume:C,getCountUp:V}):r.default.createElement("span",c({className:e,ref:w,style:h},i),t.start?V().formattingFn(t.start):"")}},5726:function(t,e,a){"use strict";function l(t,e){(null==e||e>t.length)&&(e=t.length);for(var a=0,l=new Array(e);a<e;a++)l[a]=t[a];return l}function n(t,e,a,l,n,i,r){this.acceptsBooleans=2===e||3===e||4===e,this.attributeName=l,this.attributeNamespace=n,this.mustUseProperty=a,this.propertyName=t,this.type=e,this.sanitizeURL=i,this.removeEmptyString=r}Object.defineProperty(e,"__esModule",{value:!0});var i={};["children","dangerouslySetInnerHTML","defaultValue","defaultChecked","innerHTML","suppressContentEditableWarning","suppressHydrationWarning","style"].forEach((function(t){i[t]=new n(t,0,!1,t,null,!1,!1)})),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach((function(t){var e,a,r=(a=2,function(t){if(Array.isArray(t))return t}(e=t)||function(t,e){var a=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=a){var l,n,i=[],_n=!0,r=!1;try{for(a=a.call(t);!(_n=(l=a.next()).done)&&(i.push(l.value),!e||i.length!==e);_n=!0);}catch(t){r=!0,n=t}finally{try{_n||null==a.return||a.return()}finally{if(r)throw n}}return i}}(e,a)||function(t,e){if(t){if("string"==typeof t)return l(t,e);var a=Object.prototype.toString.call(t).slice(8,-1);return"Object"===a&&t.constructor&&(a=t.constructor.name),"Map"===a||"Set"===a?Array.from(t):"Arguments"===a||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(a)?l(t,e):void 0}}(e,a)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),o=r[0],s=r[1];i[o]=new n(o,1,!1,s,null,!1,!1)})),["contentEditable","draggable","spellCheck","value"].forEach((function(t){i[t]=new n(t,2,!1,t.toLowerCase(),null,!1,!1)})),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach((function(t){i[t]=new n(t,2,!1,t,null,!1,!1)})),["allowFullScreen","async","autoFocus","autoPlay","controls","default","defer","disabled","disablePictureInPicture","disableRemotePlayback","formNoValidate","hidden","loop","noModule","noValidate","open","playsInline","readOnly","required","reversed","scoped","seamless","itemScope"].forEach((function(t){i[t]=new n(t,3,!1,t.toLowerCase(),null,!1,!1)})),["checked","multiple","muted","selected"].forEach((function(t){i[t]=new n(t,3,!0,t,null,!1,!1)})),["capture","download"].forEach((function(t){i[t]=new n(t,4,!1,t,null,!1,!1)})),["cols","rows","size","span"].forEach((function(t){i[t]=new n(t,6,!1,t,null,!1,!1)})),["rowSpan","start"].forEach((function(t){i[t]=new n(t,5,!1,t.toLowerCase(),null,!1,!1)}));var r=/[\-\:]([a-z])/g,o=function(t){return t[1].toUpperCase()};["accent-height","alignment-baseline","arabic-form","baseline-shift","cap-height","clip-path","clip-rule","color-interpolation","color-interpolation-filters","color-profile","color-rendering","dominant-baseline","enable-background","fill-opacity","fill-rule","flood-color","flood-opacity","font-family","font-size","font-size-adjust","font-stretch","font-style","font-variant","font-weight","glyph-name","glyph-orientation-horizontal","glyph-orientation-vertical","horiz-adv-x","horiz-origin-x","image-rendering","letter-spacing","lighting-color","marker-end","marker-mid","marker-start","overline-position","overline-thickness","paint-order","panose-1","pointer-events","rendering-intent","shape-rendering","stop-color","stop-opacity","strikethrough-position","strikethrough-thickness","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke-width","text-anchor","text-decoration","text-rendering","underline-position","underline-thickness","unicode-bidi","unicode-range","units-per-em","v-alphabetic","v-hanging","v-ideographic","v-mathematical","vector-effect","vert-adv-y","vert-origin-x","vert-origin-y","word-spacing","writing-mode","xmlns:xlink","x-height"].forEach((function(t){var e=t.replace(r,o);i[e]=new n(e,1,!1,t,null,!1,!1)})),["xlink:actuate","xlink:arcrole","xlink:role","xlink:show","xlink:title","xlink:type"].forEach((function(t){var e=t.replace(r,o);i[e]=new n(e,1,!1,t,"http://www.w3.org/1999/xlink",!1,!1)})),["xml:base","xml:lang","xml:space"].forEach((function(t){var e=t.replace(r,o);i[e]=new n(e,1,!1,t,"http://www.w3.org/XML/1998/namespace",!1,!1)})),["tabIndex","crossOrigin"].forEach((function(t){i[t]=new n(t,1,!1,t.toLowerCase(),null,!1,!1)})),i.xlinkHref=new n("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1),["src","href","action","formAction"].forEach((function(t){i[t]=new n(t,1,!1,t.toLowerCase(),null,!0,!0)}));var s=a(8229),h=s.CAMELCASE,c=s.SAME,g=s.possibleStandardNames,d=RegExp.prototype.test.bind(new RegExp("^(data|aria)-[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$")),v=Object.keys(g).reduce((function(t,e){var a=g[e];return a===c?t[e]=e:a===h?t[e.toLowerCase()]=e:t[e]=a,t}),{});e.BOOLEAN=3,e.BOOLEANISH_STRING=2,e.NUMERIC=5,e.OVERLOADED_BOOLEAN=4,e.POSITIVE_NUMERIC=6,e.RESERVED=0,e.STRING=1,e.getPropertyInfo=function(t){return i.hasOwnProperty(t)?i[t]:null},e.isCustomAttribute=d,e.possibleStandardNames=v},8229:function(t,e){e.SAME=0,e.CAMELCASE=1,e.possibleStandardNames={accept:0,acceptCharset:1,"accept-charset":"acceptCharset",accessKey:1,action:0,allowFullScreen:1,alt:0,as:0,async:0,autoCapitalize:1,autoComplete:1,autoCorrect:1,autoFocus:1,autoPlay:1,autoSave:1,capture:0,cellPadding:1,cellSpacing:1,challenge:0,charSet:1,checked:0,children:0,cite:0,class:"className",classID:1,className:1,cols:0,colSpan:1,content:0,contentEditable:1,contextMenu:1,controls:0,controlsList:1,coords:0,crossOrigin:1,dangerouslySetInnerHTML:1,data:0,dateTime:1,default:0,defaultChecked:1,defaultValue:1,defer:0,dir:0,disabled:0,disablePictureInPicture:1,disableRemotePlayback:1,download:0,draggable:0,encType:1,enterKeyHint:1,for:"htmlFor",form:0,formMethod:1,formAction:1,formEncType:1,formNoValidate:1,formTarget:1,frameBorder:1,headers:0,height:0,hidden:0,high:0,href:0,hrefLang:1,htmlFor:1,httpEquiv:1,"http-equiv":"httpEquiv",icon:0,id:0,innerHTML:1,inputMode:1,integrity:0,is:0,itemID:1,itemProp:1,itemRef:1,itemScope:1,itemType:1,keyParams:1,keyType:1,kind:0,label:0,lang:0,list:0,loop:0,low:0,manifest:0,marginWidth:1,marginHeight:1,max:0,maxLength:1,media:0,mediaGroup:1,method:0,min:0,minLength:1,multiple:0,muted:0,name:0,noModule:1,nonce:0,noValidate:1,open:0,optimum:0,pattern:0,placeholder:0,playsInline:1,poster:0,preload:0,profile:0,radioGroup:1,readOnly:1,referrerPolicy:1,rel:0,required:0,reversed:0,role:0,rows:0,rowSpan:1,sandbox:0,scope:0,scoped:0,scrolling:0,seamless:0,selected:0,shape:0,size:0,sizes:0,span:0,spellCheck:1,src:0,srcDoc:1,srcLang:1,srcSet:1,start:0,step:0,style:0,summary:0,tabIndex:1,target:0,title:0,type:0,useMap:1,value:0,width:0,wmode:0,wrap:0,about:0,accentHeight:1,"accent-height":"accentHeight",accumulate:0,additive:0,alignmentBaseline:1,"alignment-baseline":"alignmentBaseline",allowReorder:1,alphabetic:0,amplitude:0,arabicForm:1,"arabic-form":"arabicForm",ascent:0,attributeName:1,attributeType:1,autoReverse:1,azimuth:0,baseFrequency:1,baselineShift:1,"baseline-shift":"baselineShift",baseProfile:1,bbox:0,begin:0,bias:0,by:0,calcMode:1,capHeight:1,"cap-height":"capHeight",clip:0,clipPath:1,"clip-path":"clipPath",clipPathUnits:1,clipRule:1,"clip-rule":"clipRule",color:0,colorInterpolation:1,"color-interpolation":"colorInterpolation",colorInterpolationFilters:1,"color-interpolation-filters":"colorInterpolationFilters",colorProfile:1,"color-profile":"colorProfile",colorRendering:1,"color-rendering":"colorRendering",contentScriptType:1,contentStyleType:1,cursor:0,cx:0,cy:0,d:0,datatype:0,decelerate:0,descent:0,diffuseConstant:1,direction:0,display:0,divisor:0,dominantBaseline:1,"dominant-baseline":"dominantBaseline",dur:0,dx:0,dy:0,edgeMode:1,elevation:0,enableBackground:1,"enable-background":"enableBackground",end:0,exponent:0,externalResourcesRequired:1,fill:0,fillOpacity:1,"fill-opacity":"fillOpacity",fillRule:1,"fill-rule":"fillRule",filter:0,filterRes:1,filterUnits:1,floodOpacity:1,"flood-opacity":"floodOpacity",floodColor:1,"flood-color":"floodColor",focusable:0,fontFamily:1,"font-family":"fontFamily",fontSize:1,"font-size":"fontSize",fontSizeAdjust:1,"font-size-adjust":"fontSizeAdjust",fontStretch:1,"font-stretch":"fontStretch",fontStyle:1,"font-style":"fontStyle",fontVariant:1,"font-variant":"fontVariant",fontWeight:1,"font-weight":"fontWeight",format:0,from:0,fx:0,fy:0,g1:0,g2:0,glyphName:1,"glyph-name":"glyphName",glyphOrientationHorizontal:1,"glyph-orientation-horizontal":"glyphOrientationHorizontal",glyphOrientationVertical:1,"glyph-orientation-vertical":"glyphOrientationVertical",glyphRef:1,gradientTransform:1,gradientUnits:1,hanging:0,horizAdvX:1,"horiz-adv-x":"horizAdvX",horizOriginX:1,"horiz-origin-x":"horizOriginX",ideographic:0,imageRendering:1,"image-rendering":"imageRendering",in2:0,in:0,inlist:0,intercept:0,k1:0,k2:0,k3:0,k4:0,k:0,kernelMatrix:1,kernelUnitLength:1,kerning:0,keyPoints:1,keySplines:1,keyTimes:1,lengthAdjust:1,letterSpacing:1,"letter-spacing":"letterSpacing",lightingColor:1,"lighting-color":"lightingColor",limitingConeAngle:1,local:0,markerEnd:1,"marker-end":"markerEnd",markerHeight:1,markerMid:1,"marker-mid":"markerMid",markerStart:1,"marker-start":"markerStart",markerUnits:1,markerWidth:1,mask:0,maskContentUnits:1,maskUnits:1,mathematical:0,mode:0,numOctaves:1,offset:0,opacity:0,operator:0,order:0,orient:0,orientation:0,origin:0,overflow:0,overlinePosition:1,"overline-position":"overlinePosition",overlineThickness:1,"overline-thickness":"overlineThickness",paintOrder:1,"paint-order":"paintOrder",panose1:0,"panose-1":"panose1",pathLength:1,patternContentUnits:1,patternTransform:1,patternUnits:1,pointerEvents:1,"pointer-events":"pointerEvents",points:0,pointsAtX:1,pointsAtY:1,pointsAtZ:1,prefix:0,preserveAlpha:1,preserveAspectRatio:1,primitiveUnits:1,property:0,r:0,radius:0,refX:1,refY:1,renderingIntent:1,"rendering-intent":"renderingIntent",repeatCount:1,repeatDur:1,requiredExtensions:1,requiredFeatures:1,resource:0,restart:0,result:0,results:0,rotate:0,rx:0,ry:0,scale:0,security:0,seed:0,shapeRendering:1,"shape-rendering":"shapeRendering",slope:0,spacing:0,specularConstant:1,specularExponent:1,speed:0,spreadMethod:1,startOffset:1,stdDeviation:1,stemh:0,stemv:0,stitchTiles:1,stopColor:1,"stop-color":"stopColor",stopOpacity:1,"stop-opacity":"stopOpacity",strikethroughPosition:1,"strikethrough-position":"strikethroughPosition",strikethroughThickness:1,"strikethrough-thickness":"strikethroughThickness",string:0,stroke:0,strokeDasharray:1,"stroke-dasharray":"strokeDasharray",strokeDashoffset:1,"stroke-dashoffset":"strokeDashoffset",strokeLinecap:1,"stroke-linecap":"strokeLinecap",strokeLinejoin:1,"stroke-linejoin":"strokeLinejoin",strokeMiterlimit:1,"stroke-miterlimit":"strokeMiterlimit",strokeWidth:1,"stroke-width":"strokeWidth",strokeOpacity:1,"stroke-opacity":"strokeOpacity",suppressContentEditableWarning:1,suppressHydrationWarning:1,surfaceScale:1,systemLanguage:1,tableValues:1,targetX:1,targetY:1,textAnchor:1,"text-anchor":"textAnchor",textDecoration:1,"text-decoration":"textDecoration",textLength:1,textRendering:1,"text-rendering":"textRendering",to:0,transform:0,typeof:0,u1:0,u2:0,underlinePosition:1,"underline-position":"underlinePosition",underlineThickness:1,"underline-thickness":"underlineThickness",unicode:0,unicodeBidi:1,"unicode-bidi":"unicodeBidi",unicodeRange:1,"unicode-range":"unicodeRange",unitsPerEm:1,"units-per-em":"unitsPerEm",unselectable:0,vAlphabetic:1,"v-alphabetic":"vAlphabetic",values:0,vectorEffect:1,"vector-effect":"vectorEffect",version:0,vertAdvY:1,"vert-adv-y":"vertAdvY",vertOriginX:1,"vert-origin-x":"vertOriginX",vertOriginY:1,"vert-origin-y":"vertOriginY",vHanging:1,"v-hanging":"vHanging",vIdeographic:1,"v-ideographic":"vIdeographic",viewBox:1,viewTarget:1,visibility:0,vMathematical:1,"v-mathematical":"vMathematical",vocab:0,widths:0,wordSpacing:1,"word-spacing":"wordSpacing",writingMode:1,"writing-mode":"writingMode",x1:0,x2:0,x:0,xChannelSelector:1,xHeight:1,"x-height":"xHeight",xlinkActuate:1,"xlink:actuate":"xlinkActuate",xlinkArcrole:1,"xlink:arcrole":"xlinkArcrole",xlinkHref:1,"xlink:href":"xlinkHref",xlinkRole:1,"xlink:role":"xlinkRole",xlinkShow:1,"xlink:show":"xlinkShow",xlinkTitle:1,"xlink:title":"xlinkTitle",xlinkType:1,"xlink:type":"xlinkType",xmlBase:1,"xml:base":"xmlBase",xmlLang:1,"xml:lang":"xmlLang",xmlns:0,"xml:space":"xmlSpace",xmlnsXlink:1,"xmlns:xlink":"xmlnsXlink",xmlSpace:1,y1:0,y2:0,y:0,yChannelSelector:1,z:0,zoomAndPan:1}},4153:function(t){const e=/^[-+]?0x[a-fA-F0-9]+$/,a=/^([\-\+])?(0*)(\.[0-9]+([eE]\-?[0-9]+)?|[0-9]+(\.[0-9]+([eE]\-?[0-9]+)?)?)$/;!Number.parseInt&&window.parseInt&&(Number.parseInt=window.parseInt),!Number.parseFloat&&window.parseFloat&&(Number.parseFloat=window.parseFloat);const l={hex:!0,leadingZeros:!0,decimalPoint:".",eNotation:!0};t.exports=function(t,n={}){if(n=Object.assign({},l,n),!t||"string"!=typeof t)return t;let i=t.trim();if(void 0!==n.skipLike&&n.skipLike.test(i))return t;if(n.hex&&e.test(i))return Number.parseInt(i,16);{const e=a.exec(i);if(e){const a=e[1],l=e[2];let o=(r=e[3])&&-1!==r.indexOf(".")?("."===(r=r.replace(/0+$/,""))?r="0":"."===r[0]?r="0"+r:"."===r[r.length-1]&&(r=r.substr(0,r.length-1)),r):r;const s=e[4]||e[6];if(!n.leadingZeros&&l.length>0&&a&&"."!==i[2])return t;if(!n.leadingZeros&&l.length>0&&!a&&"."!==i[1])return t;{const e=Number(i),r=""+e;return-1!==r.search(/[eE]/)||s?n.eNotation?e:t:-1!==i.indexOf(".")?"0"===r&&""===o||r===o||a&&r==="-"+o?e:t:l?o===r||a+o===r?e:t:i===r||i===a+r?e:t}}return t}var r}},1476:function(t,e,a){"use strict";var l=this&&this.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};e.__esModule=!0;var n=l(a(7848)),i=a(6678);e.default=function(t,e){var a={};return t&&"string"==typeof t?((0,n.default)(t,(function(t,l){t&&l&&(a[(0,i.camelCase)(t,e)]=l)})),a):a}},6678:function(t,e){"use strict";e.__esModule=!0,e.camelCase=void 0;var a=/^--[a-zA-Z0-9-]+$/,l=/-([a-z])/g,n=/^[^-]+$/,i=/^-(webkit|moz|ms|o|khtml)-/,r=/^-(ms)-/,o=function(t,e){return e.toUpperCase()},s=function(t,e){return"".concat(e,"-")};e.camelCase=function(t,e){return void 0===e&&(e={}),function(t){return!t||n.test(t)||a.test(t)}(t)?t:(t=t.toLowerCase(),(t=e.reactCompat?t.replace(r,s):t.replace(i,s)).replace(l,o))}},7848:function(t,e,a){var l=a(8139);t.exports=function(t,e){var a,n=null;if(!t||"string"!=typeof t)return n;for(var i,r,o=l(t),s="function"==typeof e,h=0,c=o.length;h<c;h++)i=(a=o[h]).property,r=a.value,s?e(i,r,a):r&&(n||(n={}),n[i]=r);return n}},5933:function(t,e,a){var l;!function(){function n(t,e,a){return t.call.apply(t.bind,arguments)}function i(t,e,a){if(!t)throw Error();if(2<arguments.length){var l=Array.prototype.slice.call(arguments,2);return function(){var a=Array.prototype.slice.call(arguments);return Array.prototype.unshift.apply(a,l),t.apply(e,a)}}return function(){return t.apply(e,arguments)}}function r(t,e,a){return(r=Function.prototype.bind&&-1!=Function.prototype.bind.toString().indexOf("native code")?n:i).apply(null,arguments)}var o=Date.now||function(){return+new Date};function s(t,e){this.a=t,this.o=e||t,this.c=this.o.document}var h=!!window.FontFace;function c(t,e,a,l){if(e=t.c.createElement(e),a)for(var n in a)a.hasOwnProperty(n)&&("style"==n?e.style.cssText=a[n]:e.setAttribute(n,a[n]));return l&&e.appendChild(t.c.createTextNode(l)),e}function g(t,e,a){(t=t.c.getElementsByTagName(e)[0])||(t=document.documentElement),t.insertBefore(a,t.lastChild)}function d(t){t.parentNode&&t.parentNode.removeChild(t)}function v(t,e,a){e=e||[],a=a||[];for(var l=t.className.split(/\s+/),n=0;n<e.length;n+=1){for(var i=!1,r=0;r<l.length;r+=1)if(e[n]===l[r]){i=!0;break}i||l.push(e[n])}for(e=[],n=0;n<l.length;n+=1){for(i=!1,r=0;r<a.length;r+=1)if(l[n]===a[r]){i=!0;break}i||e.push(l[n])}t.className=e.join(" ").replace(/\s+/g," ").replace(/^\s+|\s+$/,"")}function m(t,e){for(var a=t.className.split(/\s+/),l=0,n=a.length;l<n;l++)if(a[l]==e)return!0;return!1}function u(t,e,a){function l(){o&&n&&i&&(o(r),o=null)}e=c(t,"link",{rel:"stylesheet",href:e,media:"all"});var n=!1,i=!0,r=null,o=a||null;h?(e.onload=function(){n=!0,l()},e.onerror=function(){n=!0,r=Error("Stylesheet failed to load"),l()}):setTimeout((function(){n=!0,l()}),0),g(t,"head",e)}function p(t,e,a,l){var n=t.c.getElementsByTagName("head")[0];if(n){var i=c(t,"script",{src:e}),r=!1;return i.onload=i.onreadystatechange=function(){r||this.readyState&&"loaded"!=this.readyState&&"complete"!=this.readyState||(r=!0,a&&a(null),i.onload=i.onreadystatechange=null,"HEAD"==i.parentNode.tagName&&n.removeChild(i))},n.appendChild(i),setTimeout((function(){r||(r=!0,a&&a(Error("Script load timeout")))}),l||5e3),i}return null}function w(){this.a=0,this.c=null}function f(t){return t.a++,function(){t.a--,x(t)}}function b(t,e){t.c=e,x(t)}function x(t){0==t.a&&t.c&&(t.c(),t.c=null)}function y(t){this.a=t||"-"}function z(t,e){this.c=t,this.f=4,this.a="n";var a=(e||"n4").match(/^([nio])([1-9])$/i);a&&(this.a=a[1],this.f=parseInt(a[2],10))}function C(t){var e=[];t=t.split(/,\s*/);for(var a=0;a<t.length;a++){var l=t[a].replace(/['"]/g,"");-1!=l.indexOf(" ")||/^\d/.test(l)?e.push("'"+l+"'"):e.push(l)}return e.join(",")}function V(t){return t.a+t.f}function H(t){var e="normal";return"o"===t.a?e="oblique":"i"===t.a&&(e="italic"),e}function M(t){var e=4,a="n",l=null;return t&&((l=t.match(/(normal|oblique|italic)/i))&&l[1]&&(a=l[1].substr(0,1).toLowerCase()),(l=t.match(/([1-9]00|normal|bold)/i))&&l[1]&&(/bold/i.test(l[1])?e=7:/[1-9]00/.test(l[1])&&(e=parseInt(l[1].substr(0,1),10)))),a+e}function E(t,e){this.c=t,this.f=t.o.document.documentElement,this.h=e,this.a=new y("-"),this.j=!1!==e.events,this.g=!1!==e.classes}function k(t){if(t.g){var e=m(t.f,t.a.c("wf","active")),a=[],l=[t.a.c("wf","loading")];e||a.push(t.a.c("wf","inactive")),v(t.f,a,l)}_(t,"inactive")}function _(t,e,a){t.j&&t.h[e]&&(a?t.h[e](a.c,V(a)):t.h[e]())}function S(){this.c={}}function A(t,e){this.c=t,this.f=e,this.a=c(this.c,"span",{"aria-hidden":"true"},this.f)}function L(t){g(t.c,"body",t.a)}function B(t){return"display:block;position:absolute;top:-9999px;left:-9999px;font-size:300px;width:auto;height:auto;line-height:normal;margin:0;padding:0;font-variant:normal;white-space:nowrap;font-family:"+C(t.c)+";font-style:"+H(t)+";font-weight:"+t.f+"00;"}function T(t,e,a,l,n,i){this.g=t,this.j=e,this.a=l,this.c=a,this.f=n||3e3,this.h=i||void 0}function $(t,e,a,l,n,i,r){this.v=t,this.B=e,this.c=a,this.a=l,this.s=r||"BESbswy",this.f={},this.w=n||3e3,this.u=i||null,this.m=this.j=this.h=this.g=null,this.g=new A(this.c,this.s),this.h=new A(this.c,this.s),this.j=new A(this.c,this.s),this.m=new A(this.c,this.s),t=B(t=new z(this.a.c+",serif",V(this.a))),this.g.a.style.cssText=t,t=B(t=new z(this.a.c+",sans-serif",V(this.a))),this.h.a.style.cssText=t,t=B(t=new z("serif",V(this.a))),this.j.a.style.cssText=t,t=B(t=new z("sans-serif",V(this.a))),this.m.a.style.cssText=t,L(this.g),L(this.h),L(this.j),L(this.m)}y.prototype.c=function(t){for(var e=[],a=0;a<arguments.length;a++)e.push(arguments[a].replace(/[\W_]+/g,"").toLowerCase());return e.join(this.a)},T.prototype.start=function(){var t=this.c.o.document,e=this,a=o(),l=new Promise((function(l,n){!function i(){o()-a>=e.f?n():t.fonts.load(function(t){return H(t)+" "+t.f+"00 300px "+C(t.c)}(e.a),e.h).then((function(t){1<=t.length?l():setTimeout(i,25)}),(function(){n()}))}()})),n=null,i=new Promise((function(t,a){n=setTimeout(a,e.f)}));Promise.race([i,l]).then((function(){n&&(clearTimeout(n),n=null),e.g(e.a)}),(function(){e.j(e.a)}))};var N={D:"serif",C:"sans-serif"},Z=null;function O(){if(null===Z){var t=/AppleWebKit\/([0-9]+)(?:\.([0-9]+))/.exec(window.navigator.userAgent);Z=!!t&&(536>parseInt(t[1],10)||536===parseInt(t[1],10)&&11>=parseInt(t[2],10))}return Z}function R(t,e,a){for(var l in N)if(N.hasOwnProperty(l)&&e===t.f[N[l]]&&a===t.f[N[l]])return!0;return!1}function P(t){var e,a=t.g.a.offsetWidth,l=t.h.a.offsetWidth;(e=a===t.f.serif&&l===t.f["sans-serif"])||(e=O()&&R(t,a,l)),e?o()-t.A>=t.w?O()&&R(t,a,l)&&(null===t.u||t.u.hasOwnProperty(t.a.c))?F(t,t.v):F(t,t.B):function(t){setTimeout(r((function(){P(this)}),t),50)}(t):F(t,t.v)}function F(t,e){setTimeout(r((function(){d(this.g.a),d(this.h.a),d(this.j.a),d(this.m.a),e(this.a)}),t),0)}function D(t,e,a){this.c=t,this.a=e,this.f=0,this.m=this.j=!1,this.s=a}$.prototype.start=function(){this.f.serif=this.j.a.offsetWidth,this.f["sans-serif"]=this.m.a.offsetWidth,this.A=o(),P(this)};var I=null;function j(t){0==--t.f&&t.j&&(t.m?((t=t.a).g&&v(t.f,[t.a.c("wf","active")],[t.a.c("wf","loading"),t.a.c("wf","inactive")]),_(t,"active")):k(t.a))}function G(t){this.j=t,this.a=new S,this.h=0,this.f=this.g=!0}function W(t,e,a,l,n){var i=0==--t.h;(t.f||t.g)&&setTimeout((function(){var t=n||null,o=l||{};if(0===a.length&&i)k(e.a);else{e.f+=a.length,i&&(e.j=i);var s,h=[];for(s=0;s<a.length;s++){var c=a[s],g=o[c.c],d=e.a,m=c;if(d.g&&v(d.f,[d.a.c("wf",m.c,V(m).toString(),"loading")]),_(d,"fontloading",m),d=null,null===I)if(window.FontFace){m=/Gecko.*Firefox\/(\d+)/.exec(window.navigator.userAgent);var u=/OS X.*Version\/10\..*Safari/.exec(window.navigator.userAgent)&&/Apple/.exec(window.navigator.vendor);I=m?42<parseInt(m[1],10):!u}else I=!1;d=I?new T(r(e.g,e),r(e.h,e),e.c,c,e.s,g):new $(r(e.g,e),r(e.h,e),e.c,c,e.s,t,g),h.push(d)}for(s=0;s<h.length;s++)h[s].start()}}),0)}function Y(t,e){this.c=t,this.a=e}function X(t,e){this.c=t,this.a=e}function q(t,e){this.c=t||U,this.a=[],this.f=[],this.g=e||""}D.prototype.g=function(t){var e=this.a;e.g&&v(e.f,[e.a.c("wf",t.c,V(t).toString(),"active")],[e.a.c("wf",t.c,V(t).toString(),"loading"),e.a.c("wf",t.c,V(t).toString(),"inactive")]),_(e,"fontactive",t),this.m=!0,j(this)},D.prototype.h=function(t){var e=this.a;if(e.g){var a=m(e.f,e.a.c("wf",t.c,V(t).toString(),"active")),l=[],n=[e.a.c("wf",t.c,V(t).toString(),"loading")];a||l.push(e.a.c("wf",t.c,V(t).toString(),"inactive")),v(e.f,l,n)}_(e,"fontinactive",t),j(this)},G.prototype.load=function(t){this.c=new s(this.j,t.context||this.j),this.g=!1!==t.events,this.f=!1!==t.classes,function(t,e,a){var l=[],n=a.timeout;!function(t){t.g&&v(t.f,[t.a.c("wf","loading")]),_(t,"loading")}(e),l=function(t,e,a){var l,n=[];for(l in e)if(e.hasOwnProperty(l)){var i=t.c[l];i&&n.push(i(e[l],a))}return n}(t.a,a,t.c);var i=new D(t.c,e,n);for(t.h=l.length,e=0,a=l.length;e<a;e++)l[e].load((function(e,a,l){W(t,i,e,a,l)}))}(this,new E(this.c,t),t)},Y.prototype.load=function(t){function e(){if(i["__mti_fntLst"+l]){var a,n=i["__mti_fntLst"+l](),r=[];if(n)for(var o=0;o<n.length;o++){var s=n[o].fontfamily;null!=n[o].fontStyle&&null!=n[o].fontWeight?(a=n[o].fontStyle+n[o].fontWeight,r.push(new z(s,a))):r.push(new z(s))}t(r)}else setTimeout((function(){e()}),50)}var a=this,l=a.a.projectId,n=a.a.version;if(l){var i=a.c.o;p(this.c,(a.a.api||"https://fast.fonts.net/jsapi")+"/"+l+".js"+(n?"?v="+n:""),(function(n){n?t([]):(i["__MonotypeConfiguration__"+l]=function(){return a.a},e())})).id="__MonotypeAPIScript__"+l}else t([])},X.prototype.load=function(t){var e,a,l=this.a.urls||[],n=this.a.families||[],i=this.a.testStrings||{},r=new w;for(e=0,a=l.length;e<a;e++)u(this.c,l[e],f(r));var o=[];for(e=0,a=n.length;e<a;e++)if((l=n[e].split(":"))[1])for(var s=l[1].split(","),h=0;h<s.length;h+=1)o.push(new z(l[0],s[h]));else o.push(new z(l[0]));b(r,(function(){t(o,i)}))};var U="https://fonts.googleapis.com/css";function K(t){this.f=t,this.a=[],this.c={}}var J={latin:"BESbswy","latin-ext":"çöüğş",cyrillic:"йяЖ",greek:"αβΣ",khmer:"កខគ",Hanuman:"កខគ"},Q={thin:"1",extralight:"2","extra-light":"2",ultralight:"2","ultra-light":"2",light:"3",regular:"4",book:"4",medium:"5","semi-bold":"6",semibold:"6","demi-bold":"6",demibold:"6",bold:"7","extra-bold":"8",extrabold:"8","ultra-bold":"8",ultrabold:"8",black:"9",heavy:"9",l:"3",r:"4",b:"7"},tt={i:"i",italic:"i",n:"n",normal:"n"},et=/^(thin|(?:(?:extra|ultra)-?)?light|regular|book|medium|(?:(?:semi|demi|extra|ultra)-?)?bold|black|heavy|l|r|b|[1-9]00)?(n|i|normal|italic)?$/;function at(t,e){this.c=t,this.a=e}var lt={Arimo:!0,Cousine:!0,Tinos:!0};function nt(t,e){this.c=t,this.a=e}function it(t,e){this.c=t,this.f=e,this.a=[]}at.prototype.load=function(t){var e=new w,a=this.c,l=new q(this.a.api,this.a.text),n=this.a.families;!function(t,e){for(var a=e.length,l=0;l<a;l++){var n=e[l].split(":");3==n.length&&t.f.push(n.pop());var i="";2==n.length&&""!=n[1]&&(i=":"),t.a.push(n.join(i))}}(l,n);var i=new K(n);!function(t){for(var e=t.f.length,a=0;a<e;a++){var l=t.f[a].split(":"),n=l[0].replace(/\+/g," "),i=["n4"];if(2<=l.length){var r;if(r=[],o=l[1])for(var o,s=(o=o.split(",")).length,h=0;h<s;h++){var c;if((c=o[h]).match(/^[\w-]+$/))if(null==(g=et.exec(c.toLowerCase())))c="";else{if(c=null==(c=g[2])||""==c?"n":tt[c],null==(g=g[1])||""==g)g="4";else var g=Q[g]||(isNaN(g)?"4":g.substr(0,1));c=[c,g].join("")}else c="";c&&r.push(c)}0<r.length&&(i=r),3==l.length&&(r=[],0<(l=(l=l[2])?l.split(","):r).length&&(l=J[l[0]])&&(t.c[n]=l))}for(t.c[n]||(l=J[n])&&(t.c[n]=l),l=0;l<i.length;l+=1)t.a.push(new z(n,i[l]))}}(i),u(a,function(t){if(0==t.a.length)throw Error("No fonts to load!");if(-1!=t.c.indexOf("kit="))return t.c;for(var e=t.a.length,a=[],l=0;l<e;l++)a.push(t.a[l].replace(/ /g,"+"));return e=t.c+"?family="+a.join("%7C"),0<t.f.length&&(e+="&subset="+t.f.join(",")),0<t.g.length&&(e+="&text="+encodeURIComponent(t.g)),e}(l),f(e)),b(e,(function(){t(i.a,i.c,lt)}))},nt.prototype.load=function(t){var e=this.a.id,a=this.c.o;e?p(this.c,(this.a.api||"https://use.typekit.net")+"/"+e+".js",(function(e){if(e)t([]);else if(a.Typekit&&a.Typekit.config&&a.Typekit.config.fn){e=a.Typekit.config.fn;for(var l=[],n=0;n<e.length;n+=2)for(var i=e[n],r=e[n+1],o=0;o<r.length;o++)l.push(new z(i,r[o]));try{a.Typekit.load({events:!1,classes:!1,async:!0})}catch(t){}t(l)}}),2e3):t([])},it.prototype.load=function(t){var e=this.f.id,a=this.c.o,l=this;e?(a.__webfontfontdeckmodule__||(a.__webfontfontdeckmodule__={}),a.__webfontfontdeckmodule__[e]=function(e,a){for(var n=0,i=a.fonts.length;n<i;++n){var r=a.fonts[n];l.a.push(new z(r.name,M("font-weight:"+r.weight+";font-style:"+r.style)))}t(l.a)},p(this.c,(this.f.api||"https://f.fontdeck.com/s/css/js/")+function(t){return t.o.location.hostname||t.a.location.hostname}(this.c)+"/"+e+".js",(function(e){e&&t([])}))):t([])};var rt=new G(window);rt.a.c.custom=function(t,e){return new X(e,t)},rt.a.c.fontdeck=function(t,e){return new it(e,t)},rt.a.c.monotype=function(t,e){return new Y(e,t)},rt.a.c.typekit=function(t,e){return new nt(e,t)},rt.a.c.google=function(t,e){return new at(e,t)};var ot={load:r(rt.load,rt)};void 0===(l=function(){return ot}.call(e,a,e,t))||(t.exports=l)}()},9196:function(t){"use strict";t.exports=window.React}},e={};function a(l){var n=e[l];if(void 0!==n)return n.exports;var i=e[l]={exports:{}};return t[l].call(i.exports,i,i.exports,a),i.exports}a.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return a.d(e,{a:e}),e},a.d=function(t,e){for(var l in e)a.o(e,l)&&!a.o(t,l)&&Object.defineProperty(t,l,{enumerable:!0,get:e[l]})},a.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),a.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},a.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},function(){"use strict";var t=window.wp.blocks,e=window.wp.element,l=a(4184),n=a.n(l),i=a(9196),r=a.n(i);function o(t){return function(e){return!!e.type&&e.type.tabsRole===t}}var s=o("Tab"),h=o("TabList"),c=o("TabPanel");function g(){return g=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var a=arguments[e];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(t[l]=a[l])}return t},g.apply(this,arguments)}function d(t,e){return i.Children.map(t,(function(t){return null===t?null:function(t){return s(t)||h(t)||c(t)}(t)?e(t):t.props&&t.props.children&&"object"==typeof t.props.children?(0,i.cloneElement)(t,g({},t.props,{children:d(t.props.children,e)})):t}))}function v(t,e){return i.Children.forEach(t,(function(t){null!==t&&(s(t)||c(t)?e(t):t.props&&t.props.children&&"object"==typeof t.props.children&&(h(t)&&e(t),v(t.props.children,e)))}))}function m(t){var e,a,l="";if("string"==typeof t||"number"==typeof t)l+=t;else if("object"==typeof t)if(Array.isArray(t))for(e=0;e<t.length;e++)t[e]&&(a=m(t[e]))&&(l&&(l+=" "),l+=a);else for(e in t)t[e]&&(l&&(l+=" "),l+=e);return l}var u=function(){for(var t,e,a=0,l="";a<arguments.length;)(t=arguments[a++])&&(e=m(t))&&(l&&(l+=" "),l+=e);return l},p=0;function w(){return"react-tabs-"+p++}function f(t){var e=0;return v(t,(function(t){s(t)&&e++})),e}var b,x=["children","className","disabledTabClassName","domRef","focus","forceRenderTabPanel","onSelect","selectedIndex","selectedTabClassName","selectedTabPanelClassName","environment","disableUpDownKeys"];function y(){return y=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var a=arguments[e];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(t[l]=a[l])}return t},y.apply(this,arguments)}function z(t){return t&&"getAttribute"in t}function C(t){return z(t)&&t.getAttribute("data-rttab")}function V(t){return z(t)&&"true"===t.getAttribute("aria-disabled")}var H=function(t){var e=(0,i.useRef)([]),a=(0,i.useRef)([]),l=(0,i.useRef)([]),n=(0,i.useRef)();function o(e,a){e<0||e>=m()||(0,t.onSelect)(e,t.selectedIndex,a)}function g(t){for(var e=m(),a=t+1;a<e;a++)if(!V(p(a)))return a;for(var l=0;l<t;l++)if(!V(p(l)))return l;return t}function v(t){for(var e=t;e--;)if(!V(p(e)))return e;for(e=m();e-- >t;)if(!V(p(e)))return e;return t}function m(){return f(t.children)}function p(t){return e.current["tabs-"+t]}function z(t){var e=t.target;do{if(H(e)){if(V(e))return;return void o([].slice.call(e.parentNode.children).filter(C).indexOf(e),t)}}while(null!=(e=e.parentNode))}function H(t){if(!C(t))return!1;var e=t.parentElement;do{if(e===n.current)return!0;if(e.getAttribute("data-rttabs"))break;e=e.parentElement}while(e);return!1}t.children;var M=t.className,E=(t.disabledTabClassName,t.domRef),k=(t.focus,t.forceRenderTabPanel,t.onSelect,t.selectedIndex,t.selectedTabClassName,t.selectedTabPanelClassName,t.environment,t.disableUpDownKeys,function(t,e){if(null==t)return{};var a,l,n={},i=Object.keys(t);for(l=0;l<i.length;l++)a=i[l],e.indexOf(a)>=0||(n[a]=t[a]);return n}(t,x));return r().createElement("div",y({},k,{className:u(M),onClick:z,onKeyDown:function(e){var a=t.direction,l=t.disableUpDownKeys;if(H(e.target)){var n=t.selectedIndex,i=!1,r=!1;"Space"!==e.code&&32!==e.keyCode&&"Enter"!==e.code&&13!==e.keyCode||(i=!0,r=!1,z(e)),"ArrowLeft"!==e.code&&37!==e.keyCode&&(l||38!==e.keyCode&&"ArrowUp"!==e.code)?"ArrowRight"!==e.code&&39!==e.keyCode&&(l||40!==e.keyCode&&"ArrowDown"!==e.code)?35===e.keyCode||"End"===e.code?(n=function(){for(var t=m();t--;)if(!V(p(t)))return t;return null}(),i=!0,r=!0):36!==e.keyCode&&"Home"!==e.code||(n=function(){for(var t=m(),e=0;e<t;e++)if(!V(p(e)))return e;return null}(),i=!0,r=!0):(n="rtl"===a?v(n):g(n),i=!0,r=!0):(n="rtl"===a?g(n):v(n),i=!0,r=!0),i&&e.preventDefault(),r&&o(n,e)}},ref:function(t){n.current=t,E&&E(t)},"data-rttabs":!0}),function(){var n=0,o=t.children,g=t.disabledTabClassName,v=t.focus,u=t.forceRenderTabPanel,f=t.selectedIndex,x=t.selectedTabClassName,y=t.selectedTabPanelClassName,z=t.environment;a.current=a.current||[],l.current=l.current||[];for(var C=a.current.length-m();C++<0;)a.current.push(w()),l.current.push(w());return d(o,(function(t){var o=t;if(h(t)){var m=0,w=!1;null==b&&function(t){var e=t||("undefined"!=typeof window?window:void 0);try{b=!(void 0===e||!e.document||!e.document.activeElement)}catch(t){b=!1}}(z);var C=z||("undefined"!=typeof window?window:void 0);b&&C&&(w=r().Children.toArray(t.props.children).filter(s).some((function(t,e){return C.document.activeElement===p(e)}))),o=(0,i.cloneElement)(t,{children:d(t.props.children,(function(t){var n="tabs-"+m,r=f===m,o={tabRef:function(t){e.current[n]=t},id:a.current[m],panelId:l.current[m],selected:r,focus:r&&(v||w)};return x&&(o.selectedClassName=x),g&&(o.disabledClassName=g),m++,(0,i.cloneElement)(t,o)}))})}else if(c(t)){var V={id:l.current[n],tabId:a.current[n],selected:f===n};u&&(V.forceRender=u),y&&(V.selectedClassName=y),n++,o=(0,i.cloneElement)(t,V)}return o}))}())};H.defaultProps={className:"react-tabs",focus:!1},H.propTypes={};var M=H;function E(){return E=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var a=arguments[e];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(t[l]=a[l])}return t},E.apply(this,arguments)}var k=function(t){var e=t.children,a=t.defaultFocus,l=t.defaultIndex,n=t.focusTabOnClick,o=t.onSelect,s=(0,i.useState)(a),h=s[0],c=s[1],g=(0,i.useState)(function(t){return null===t.selectedIndex?1:0}(t)),d=g[0],v=(0,i.useState)(1===d?l||0:null),m=v[0],u=v[1];if((0,i.useEffect)((function(){c(!1)}),[]),1===d){var p=f(e);(0,i.useEffect)((function(){if(null!=m){var t=Math.max(0,p-1);u(Math.min(m,t))}}),[p])}var w=E({},t);return w.focus=h,w.onSelect=function(t,e,a){"function"==typeof o&&!1===o(t,e,a)||(n&&c(!0),1===d&&u(t))},null!=m&&(w.selectedIndex=m),delete w.defaultFocus,delete w.defaultIndex,delete w.focusTabOnClick,r().createElement(M,w,e)};k.propTypes={},k.defaultProps={defaultFocus:!1,focusTabOnClick:!0,forceRenderTabPanel:!1,selectedIndex:null,defaultIndex:null,environment:null,disableUpDownKeys:!1},k.tabsRole="Tabs";var _=k,S=["children","className"];function A(){return A=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var a=arguments[e];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(t[l]=a[l])}return t},A.apply(this,arguments)}var L=function(t){var e=t.children,a=t.className,l=function(t,e){if(null==t)return{};var a,l,n={},i=Object.keys(t);for(l=0;l<i.length;l++)a=i[l],e.indexOf(a)>=0||(n[a]=t[a]);return n}(t,S);return r().createElement("ul",A({},l,{className:u(a),role:"tablist"}),e)};L.tabsRole="TabList",L.propTypes={},L.defaultProps={className:"react-tabs__tab-list"};var B=L,T=["children","className","disabled","disabledClassName","focus","id","panelId","selected","selectedClassName","tabIndex","tabRef"];function $(){return $=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var a=arguments[e];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(t[l]=a[l])}return t},$.apply(this,arguments)}var N="react-tabs__tab",Z={className:N,disabledClassName:N+"--disabled",focus:!1,id:null,panelId:null,selected:!1,selectedClassName:N+"--selected"},O=function(t){var e,a=(0,i.useRef)(),l=t.children,n=t.className,o=t.disabled,s=t.disabledClassName,h=t.focus,c=t.id,g=t.panelId,d=t.selected,v=t.selectedClassName,m=t.tabIndex,p=t.tabRef,w=function(t,e){if(null==t)return{};var a,l,n={},i=Object.keys(t);for(l=0;l<i.length;l++)a=i[l],e.indexOf(a)>=0||(n[a]=t[a]);return n}(t,T);return(0,i.useEffect)((function(){d&&h&&a.current.focus()}),[d,h]),r().createElement("li",$({},w,{className:u(n,(e={},e[v]=d,e[s]=o,e)),ref:function(t){a.current=t,p&&p(t)},role:"tab",id:c,"aria-selected":d?"true":"false","aria-disabled":o?"true":"false","aria-controls":g,tabIndex:m||(d?"0":null),"data-rttab":!0}),l)};O.propTypes={},O.tabsRole="Tab",O.defaultProps=Z;var R=O,P=["children","className","forceRender","id","selected","selectedClassName","tabId"];function F(){return F=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var a=arguments[e];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(t[l]=a[l])}return t},F.apply(this,arguments)}var D={className:"react-tabs__tab-panel",forceRender:!1,selectedClassName:"react-tabs__tab-panel--selected"},I=function(t){var e,a=t.children,l=t.className,n=t.forceRender,i=t.id,o=t.selected,s=t.selectedClassName,h=t.tabId,c=function(t,e){if(null==t)return{};var a,l,n={},i=Object.keys(t);for(l=0;l<i.length;l++)a=i[l],e.indexOf(a)>=0||(n[a]=t[a]);return n}(t,P);return r().createElement("div",F({},c,{className:u(l,(e={},e[s]=o,e)),role:"tabpanel",id:i,"aria-labelledby":h}),n||o?a:null)};I.tabsRole="TabPanel",I.propTypes={},I.defaultProps=D;var j=I,G=window.wp.i18n,W=window.wp.blockEditor,Y=window.wp.components,X=window.wp.primitives,q=(0,e.createElement)(X.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,e.createElement)(X.Path,{d:"M4 19.8h8.9v-1.5H4v1.5zm8.9-15.6H4v1.5h8.9V4.2zm-8.9 7v1.5h16v-1.5H4z"})),U=(0,e.createElement)(X.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,e.createElement)(X.Path,{d:"M16.4 4.2H7.6v1.5h8.9V4.2zM4 11.2v1.5h16v-1.5H4zm3.6 8.6h8.9v-1.5H7.6v1.5z"})),K=(0,e.createElement)(X.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,e.createElement)(X.Path,{d:"M11.1 19.8H20v-1.5h-8.9v1.5zm0-15.6v1.5H20V4.2h-8.9zM4 12.8h16v-1.5H4v1.5z"})),J=(0,e.createElement)(X.SVG,{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,e.createElement)(X.Path,{d:"M4 12.8h16v-1.5H4v1.5zm0 7h12.4v-1.5H4v1.5zM4 4.3v1.5h16V4.3H4z"})),Q=(0,e.createElement)(X.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,e.createElement)(X.Path,{d:"M15.6 7.3h-.7l1.6-3.5-.9-.4-3.9 8.5H9v1.5h2l-1.3 2.8H8.4c-2 0-3.7-1.7-3.7-3.7s1.7-3.7 3.7-3.7H10V7.3H8.4c-2.9 0-5.2 2.3-5.2 5.2 0 2.9 2.3 5.2 5.2 5.2H9l-1.4 3.2.9.4 5.7-12.5h1.4c2 0 3.7 1.7 3.7 3.7s-1.7 3.7-3.7 3.7H14v1.5h1.6c2.9 0 5.2-2.3 5.2-5.2 0-2.9-2.4-5.2-5.2-5.2z"})),tt=(0,e.createElement)(X.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},(0,e.createElement)(X.Path,{d:"M15.6 7.2H14v1.5h1.6c2 0 3.7 1.7 3.7 3.7s-1.7 3.7-3.7 3.7H14v1.5h1.6c2.8 0 5.2-2.3 5.2-5.2 0-2.9-2.3-5.2-5.2-5.2zM4.7 12.4c0-2 1.7-3.7 3.7-3.7H10V7.2H8.4c-2.9 0-5.2 2.3-5.2 5.2 0 2.9 2.3 5.2 5.2 5.2H10v-1.5H8.4c-2 0-3.7-1.7-3.7-3.7zm4.6.9h5.3v-1.5H9.3v1.5z"})),et=window.wp.keycodes,at=a(488),lt=(at.domToReact,at.htmlToDOM,at.attributesToProps,at.Element,at);const nt=[{label:(0,G.__)("None","grigora-kit"),value:"none"},{label:(0,G.__)("Bounce","grigora-kit"),value:"bounce"},{label:(0,G.__)("Flash","grigora-kit"),value:"flash"},{label:(0,G.__)("Pulse","grigora-kit"),value:"pulse"},{label:(0,G.__)("Rubber Band","grigora-kit"),value:"rubberBand"},{label:(0,G.__)("Shake X","grigora-kit"),value:"shakeX"},{label:(0,G.__)("Shake Y","grigora-kit"),value:"shakeY"},{label:(0,G.__)("Head Shake","grigora-kit"),value:"headShake"},{label:(0,G.__)("Swing","grigora-kit"),value:"swing"},{label:(0,G.__)("Tada","grigora-kit"),value:"tada"},{label:(0,G.__)("Wobble","grigora-kit"),value:"wobble"},{label:(0,G.__)("Jello","grigora-kit"),value:"jello"}],it=[{label:(0,G.__)("None","grigora-kit"),value:"none"},{label:(0,G.__)("Bounce","grigora-kit"),value:"bounce"},{label:(0,G.__)("backInDown","grigora-kit"),value:"backInDown"},{label:(0,G.__)("backInLeft","grigora-kit"),value:"backInLeft"},{label:(0,G.__)("backInRight","grigora-kit"),value:"backInRight"},{label:(0,G.__)("backInUp","grigora-kit"),value:"backInUp"},{label:(0,G.__)("bounceIn","grigora-kit"),value:"bounceIn"},{label:(0,G.__)("bounceInDown","grigora-kit"),value:"bounceInDown"},{label:(0,G.__)("bounceInLeft","grigora-kit"),value:"bounceInLeft"},{label:(0,G.__)("bounceInRight","grigora-kit"),value:"bounceInRight"},{label:(0,G.__)("bounceInUp","grigora-kit"),value:"bounceInUp"},{label:(0,G.__)("fadeIn","grigora-kit"),value:"fadeIn"},{label:(0,G.__)("fadeInDown","grigora-kit"),value:"fadeInDown"},{label:(0,G.__)("fadeInDownBig","grigora-kit"),value:"fadeInDownBig"},{label:(0,G.__)("fadeInDown","grigora-kit"),value:"fadeInDown"},{label:(0,G.__)("fadeInLeft","grigora-kit"),value:"fadeInLeft"},{label:(0,G.__)("fadeInLeftBig","grigora-kit"),value:"fadeInLeftBig"},{label:(0,G.__)("fadeInRight","grigora-kit"),value:"fadeInRight"},{label:(0,G.__)("fadeInRightBig","grigora-kit"),value:"fadeInRightBig"},{label:(0,G.__)("fadeInUp","grigora-kit"),value:"fadeInUp"},{label:(0,G.__)("fadeInUpBig","grigora-kit"),value:"fadeInUpBig"},{label:(0,G.__)("fadeInTopLeft","grigora-kit"),value:"fadeInTopLeft"},{label:(0,G.__)("fadeInTopRight","grigora-kit"),value:"fadeInTopRight"},{label:(0,G.__)("fadeInBottomLeft","grigora-kit"),value:"fadeInBottomLeft"},{label:(0,G.__)("fadeInBottomRight","grigora-kit"),value:"fadeInBottomRight"},{label:(0,G.__)("rotateIn","grigora-kit"),value:"rotateIn"},{label:(0,G.__)("rotateInDownLeft","grigora-kit"),value:"rotateInDownLeft"},{label:(0,G.__)("rotateInUpLeft","grigora-kit"),value:"rotateInUpLeft"},{label:(0,G.__)("rotateInUpRight","grigora-kit"),value:"rotateInUpRight"}],rt=[{label:(0,G.__)("Left","grigora-kit"),value:"left"},{label:(0,G.__)("Right","grigora-kit"),value:"right"}],ot=[{label:(0,G.__)("None","grigora-kit"),value:"none"},{label:(0,G.__)("Capitalize","grigora-kit"),value:"capitalize"},{label:(0,G.__)("Uppercase","grigora-kit"),value:"uppercase"},{label:(0,G.__)("Lowercase","grigora-kit"),value:"lowercase"}],st=[{label:(0,G.__)("Normal","grigora-kit"),value:"normal"},{label:(0,G.__)("Italic","grigora-kit"),value:"italic"}],ht=[{label:(0,G.__)("Default","grigora-kit"),value:"initial"},{label:(0,G.__)("Overline","grigora-kit"),value:"overline"},{label:(0,G.__)("Line Through","grigora-kit"),value:"line-through"},{label:(0,G.__)("Underline","grigora-kit"),value:"underline"},{label:(0,G.__)("Underline Overline","grigora-kit"),value:"underline overline"}],ct=["100","200","300","400","500","600","700","800","900"];var gt=t=>`${t}-${(new Date).getTime()}`,dt=[],vt=JSON.parse('{"123":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-123\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M2.873 11.297V4.142H1.699L0 5.379v1.137l1.64-1.18h.06v5.961h1.174Zm3.213-5.09v-.063c0-.618.44-1.169 1.196-1.169.676 0 1.174.44 1.174 1.106 0 .624-.42 1.101-.807 1.526L4.99 10.553v.744h4.78v-.99H6.643v-.069L8.41 8.252c.65-.724 1.237-1.332 1.237-2.27C9.646 4.849 8.723 4 7.308 4c-1.573 0-2.36 1.064-2.36 2.15v.057h1.138Zm6.559 1.883h.786c.823 0 1.374.481 1.379 1.179.01.707-.55 1.216-1.421 1.21-.77-.005-1.326-.419-1.379-.953h-1.095c.042 1.053.938 1.918 2.464 1.918 1.478 0 2.642-.839 2.62-2.144-.02-1.143-.922-1.651-1.551-1.714v-.063c.535-.09 1.347-.66 1.326-1.678-.026-1.053-.933-1.855-2.359-1.845-1.5.005-2.317.88-2.348 1.898h1.116c.032-.498.498-.944 1.206-.944.703 0 1.206.435 1.206 1.07.005.64-.504 1.106-1.2 1.106h-.75v.96Z\\"/>\\n</svg>","activity":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-activity\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M6 2a.5.5 0 0 1 .47.33L10 12.036l1.53-4.208A.5.5 0 0 1 12 7.5h3.5a.5.5 0 0 1 0 1h-3.15l-1.88 5.17a.5.5 0 0 1-.94 0L6 3.964 4.47 8.171A.5.5 0 0 1 4 8.5H.5a.5.5 0 0 1 0-1h3.15l1.88-5.17A.5.5 0 0 1 6 2Z\\"/>\\n</svg>","alarm-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-alarm-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M6 .5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1H9v1.07a7.001 7.001 0 0 1 3.274 12.474l.601.602a.5.5 0 0 1-.707.708l-.746-.746A6.97 6.97 0 0 1 8 16a6.97 6.97 0 0 1-3.422-.892l-.746.746a.5.5 0 0 1-.707-.708l.602-.602A7.001 7.001 0 0 1 7 2.07V1h-.5A.5.5 0 0 1 6 .5zm2.5 5a.5.5 0 0 0-1 0v3.362l-1.429 2.38a.5.5 0 1 0 .858.515l1.5-2.5A.5.5 0 0 0 8.5 9V5.5zM.86 5.387A2.5 2.5 0 1 1 4.387 1.86 8.035 8.035 0 0 0 .86 5.387zM11.613 1.86a2.5 2.5 0 1 1 3.527 3.527 8.035 8.035 0 0 0-3.527-3.527z\\"/>\\n</svg>","alarm":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-alarm\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M8.5 5.5a.5.5 0 0 0-1 0v3.362l-1.429 2.38a.5.5 0 1 0 .858.515l1.5-2.5A.5.5 0 0 0 8.5 9V5.5z\\"/>\\n  <path d=\\"M6.5 0a.5.5 0 0 0 0 1H7v1.07a7.001 7.001 0 0 0-3.273 12.474l-.602.602a.5.5 0 0 0 .707.708l.746-.746A6.97 6.97 0 0 0 8 16a6.97 6.97 0 0 0 3.422-.892l.746.746a.5.5 0 0 0 .707-.708l-.601-.602A7.001 7.001 0 0 0 9 2.07V1h.5a.5.5 0 0 0 0-1h-3zm1.038 3.018a6.093 6.093 0 0 1 .924 0 6 6 0 1 1-.924 0zM0 3.5c0 .753.333 1.429.86 1.887A8.035 8.035 0 0 1 4.387 1.86 2.5 2.5 0 0 0 0 3.5zM13.5 1c-.753 0-1.429.333-1.887.86a8.035 8.035 0 0 1 3.527 3.527A2.5 2.5 0 0 0 13.5 1z\\"/>\\n</svg>","align-bottom":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-align-bottom\\" viewBox=\\"0 0 16 16\\">\\n  <rect width=\\"4\\" height=\\"12\\" x=\\"6\\" y=\\"1\\" rx=\\"1\\"/>\\n  <path d=\\"M1.5 14a.5.5 0 0 0 0 1v-1zm13 1a.5.5 0 0 0 0-1v1zm-13 0h13v-1h-13v1z\\"/>\\n</svg>","align-center":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-align-center\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M8 1a.5.5 0 0 1 .5.5V6h-1V1.5A.5.5 0 0 1 8 1zm0 14a.5.5 0 0 1-.5-.5V10h1v4.5a.5.5 0 0 1-.5.5zM2 7a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V7z\\"/>\\n</svg>","align-end":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-align-end\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M14.5 1a.5.5 0 0 0-.5.5v13a.5.5 0 0 0 1 0v-13a.5.5 0 0 0-.5-.5z\\"/>\\n  <path d=\\"M13 7a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V7z\\"/>\\n</svg>","align-middle":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-align-middle\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M6 13a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v10zM1 8a.5.5 0 0 0 .5.5H6v-1H1.5A.5.5 0 0 0 1 8zm14 0a.5.5 0 0 1-.5.5H10v-1h4.5a.5.5 0 0 1 .5.5z\\"/>\\n</svg>","align-start":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-align-start\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M1.5 1a.5.5 0 0 1 .5.5v13a.5.5 0 0 1-1 0v-13a.5.5 0 0 1 .5-.5z\\"/>\\n  <path d=\\"M3 7a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V7z\\"/>\\n</svg>","align-top":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-align-top\\" viewBox=\\"0 0 16 16\\">\\n  <rect width=\\"4\\" height=\\"12\\" rx=\\"1\\" transform=\\"matrix(1 0 0 -1 6 15)\\"/>\\n  <path d=\\"M1.5 2a.5.5 0 0 1 0-1v1zm13-1a.5.5 0 0 1 0 1V1zm-13 0h13v1h-13V1z\\"/>\\n</svg>","alt":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-alt\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M1 13.5a.5.5 0 0 0 .5.5h3.797a.5.5 0 0 0 .439-.26L11 3h3.5a.5.5 0 0 0 0-1h-3.797a.5.5 0 0 0-.439.26L5 13H1.5a.5.5 0 0 0-.5.5zm10 0a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 0-1h-3a.5.5 0 0 0-.5.5z\\"/>\\n</svg>","app-indicator":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-app-indicator\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M5.5 2A3.5 3.5 0 0 0 2 5.5v5A3.5 3.5 0 0 0 5.5 14h5a3.5 3.5 0 0 0 3.5-3.5V8a.5.5 0 0 1 1 0v2.5a4.5 4.5 0 0 1-4.5 4.5h-5A4.5 4.5 0 0 1 1 10.5v-5A4.5 4.5 0 0 1 5.5 1H8a.5.5 0 0 1 0 1H5.5z\\"/>\\n  <path d=\\"M16 3a3 3 0 1 1-6 0 3 3 0 0 1 6 0z\\"/>\\n</svg>","app":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-app\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M11 2a3 3 0 0 1 3 3v6a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V5a3 3 0 0 1 3-3h6zM5 1a4 4 0 0 0-4 4v6a4 4 0 0 0 4 4h6a4 4 0 0 0 4-4V5a4 4 0 0 0-4-4H5z\\"/>\\n</svg>","apple":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-apple\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M11.182.008C11.148-.03 9.923.023 8.857 1.18c-1.066 1.156-.902 2.482-.878 2.516.024.034 1.52.087 2.475-1.258.955-1.345.762-2.391.728-2.43zm3.314 11.733c-.048-.096-2.325-1.234-2.113-3.422.212-2.189 1.675-2.789 1.698-2.854.023-.065-.597-.79-1.254-1.157a3.692 3.692 0 0 0-1.563-.434c-.108-.003-.483-.095-1.254.116-.508.139-1.653.589-1.968.607-.316.018-1.256-.522-2.267-.665-.647-.125-1.333.131-1.824.328-.49.196-1.422.754-2.074 2.237-.652 1.482-.311 3.83-.067 4.56.244.729.625 1.924 1.273 2.796.576.984 1.34 1.667 1.659 1.899.319.232 1.219.386 1.843.067.502-.308 1.408-.485 1.766-.472.357.013 1.061.154 1.782.539.571.197 1.111.115 1.652-.105.541-.221 1.324-1.059 2.238-2.758.347-.79.505-1.217.473-1.282z\\"/>\\n  <path d=\\"M11.182.008C11.148-.03 9.923.023 8.857 1.18c-1.066 1.156-.902 2.482-.878 2.516.024.034 1.52.087 2.475-1.258.955-1.345.762-2.391.728-2.43zm3.314 11.733c-.048-.096-2.325-1.234-2.113-3.422.212-2.189 1.675-2.789 1.698-2.854.023-.065-.597-.79-1.254-1.157a3.692 3.692 0 0 0-1.563-.434c-.108-.003-.483-.095-1.254.116-.508.139-1.653.589-1.968.607-.316.018-1.256-.522-2.267-.665-.647-.125-1.333.131-1.824.328-.49.196-1.422.754-2.074 2.237-.652 1.482-.311 3.83-.067 4.56.244.729.625 1.924 1.273 2.796.576.984 1.34 1.667 1.659 1.899.319.232 1.219.386 1.843.067.502-.308 1.408-.485 1.766-.472.357.013 1.061.154 1.782.539.571.197 1.111.115 1.652-.105.541-.221 1.324-1.059 2.238-2.758.347-.79.505-1.217.473-1.282z\\"/>\\n</svg>","archive-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-archive-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M12.643 15C13.979 15 15 13.845 15 12.5V5H1v7.5C1 13.845 2.021 15 3.357 15h9.286zM5.5 7h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1 0-1zM.8 1a.8.8 0 0 0-.8.8V3a.8.8 0 0 0 .8.8h14.4A.8.8 0 0 0 16 3V1.8a.8.8 0 0 0-.8-.8H.8z\\"/>\\n</svg>","archive":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-archive\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M0 2a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1v7.5a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 1 12.5V5a1 1 0 0 1-1-1V2zm2 3v7.5A1.5 1.5 0 0 0 3.5 14h9a1.5 1.5 0 0 0 1.5-1.5V5H2zm13-3H1v2h14V2zM5 7.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5z\\"/>\\n</svg>","arrow-90deg-down":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-90deg-down\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M4.854 14.854a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L4 13.293V3.5A2.5 2.5 0 0 1 6.5 1h8a.5.5 0 0 1 0 1h-8A1.5 1.5 0 0 0 5 3.5v9.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4z\\"/>\\n</svg>","arrow-90deg-left":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-90deg-left\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M1.146 4.854a.5.5 0 0 1 0-.708l4-4a.5.5 0 1 1 .708.708L2.707 4H12.5A2.5 2.5 0 0 1 15 6.5v8a.5.5 0 0 1-1 0v-8A1.5 1.5 0 0 0 12.5 5H2.707l3.147 3.146a.5.5 0 1 1-.708.708l-4-4z\\"/>\\n</svg>","arrow-90deg-right":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-90deg-right\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M14.854 4.854a.5.5 0 0 0 0-.708l-4-4a.5.5 0 0 0-.708.708L13.293 4H3.5A2.5 2.5 0 0 0 1 6.5v8a.5.5 0 0 0 1 0v-8A1.5 1.5 0 0 1 3.5 5h9.793l-3.147 3.146a.5.5 0 0 0 .708.708l4-4z\\"/>\\n</svg>","arrow-90deg-up":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-90deg-up\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M4.854 1.146a.5.5 0 0 0-.708 0l-4 4a.5.5 0 1 0 .708.708L4 2.707V12.5A2.5 2.5 0 0 0 6.5 15h8a.5.5 0 0 0 0-1h-8A1.5 1.5 0 0 1 5 12.5V2.707l3.146 3.147a.5.5 0 1 0 .708-.708l-4-4z\\"/>\\n</svg>","arrow-bar-down":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-bar-down\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M1 3.5a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 0 1h-13a.5.5 0 0 1-.5-.5zM8 6a.5.5 0 0 1 .5.5v5.793l2.146-2.147a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 0 1 .708-.708L7.5 12.293V6.5A.5.5 0 0 1 8 6z\\"/>\\n</svg>","arrow-bar-left":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-bar-left\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5zM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5z\\"/>\\n</svg>","arrow-bar-right":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-bar-right\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M6 8a.5.5 0 0 0 .5.5h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 0 0-.708.708L12.293 7.5H6.5A.5.5 0 0 0 6 8zm-2.5 7a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5z\\"/>\\n</svg>","arrow-bar-up":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-bar-up\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M8 10a.5.5 0 0 0 .5-.5V3.707l2.146 2.147a.5.5 0 0 0 .708-.708l-3-3a.5.5 0 0 0-.708 0l-3 3a.5.5 0 1 0 .708.708L7.5 3.707V9.5a.5.5 0 0 0 .5.5zm-7 2.5a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 0 1h-13a.5.5 0 0 1-.5-.5z\\"/>\\n</svg>","arrow-clockwise":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-clockwise\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M8 3a5 5 0 1 0 4.546 2.914.5.5 0 0 1 .908-.417A6 6 0 1 1 8 2v1z\\"/>\\n  <path d=\\"M8 4.466V.534a.25.25 0 0 1 .41-.192l2.36 1.966c.12.1.12.284 0 .384L8.41 4.658A.25.25 0 0 1 8 4.466z\\"/>\\n</svg>","arrow-counterclockwise":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-counterclockwise\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M8 3a5 5 0 1 1-4.546 2.914.5.5 0 0 0-.908-.417A6 6 0 1 0 8 2v1z\\"/>\\n  <path d=\\"M8 4.466V.534a.25.25 0 0 0-.41-.192L5.23 2.308a.25.25 0 0 0 0 .384l2.36 1.966A.25.25 0 0 0 8 4.466z\\"/>\\n</svg>","arrow-down-circle-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-down-circle-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8.5 4.5a.5.5 0 0 0-1 0v5.793L5.354 8.146a.5.5 0 1 0-.708.708l3 3a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293V4.5z\\"/>\\n</svg>","arrow-down-circle":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-down-circle\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8zm15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8.5 4.5a.5.5 0 0 0-1 0v5.793L5.354 8.146a.5.5 0 1 0-.708.708l3 3a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293V4.5z\\"/>\\n</svg>","arrow-down-left-circle-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-down-left-circle-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M16 8A8 8 0 1 0 0 8a8 8 0 0 0 16 0zm-5.904-2.803a.5.5 0 1 1 .707.707L6.707 10h2.768a.5.5 0 0 1 0 1H5.5a.5.5 0 0 1-.5-.5V6.525a.5.5 0 0 1 1 0v2.768l4.096-4.096z\\"/>\\n</svg>","arrow-down-left-circle":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-down-left-circle\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8zm15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-5.904-2.854a.5.5 0 1 1 .707.708L6.707 9.95h2.768a.5.5 0 1 1 0 1H5.5a.5.5 0 0 1-.5-.5V6.475a.5.5 0 1 1 1 0v2.768l4.096-4.097z\\"/>\\n</svg>","arrow-down-left-square-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-down-left-square-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M2 16a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2zm8.096-10.803L6 9.293V6.525a.5.5 0 0 0-1 0V10.5a.5.5 0 0 0 .5.5h3.975a.5.5 0 0 0 0-1H6.707l4.096-4.096a.5.5 0 1 0-.707-.707z\\"/>\\n</svg>","arrow-down-left-square":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-down-left-square\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M15 2a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V2zM0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2zm10.096 3.146a.5.5 0 1 1 .707.708L6.707 9.95h2.768a.5.5 0 1 1 0 1H5.5a.5.5 0 0 1-.5-.5V6.475a.5.5 0 1 1 1 0v2.768l4.096-4.097z\\"/>\\n</svg>","arrow-down-left":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-down-left\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M2 13.5a.5.5 0 0 0 .5.5h6a.5.5 0 0 0 0-1H3.707L13.854 2.854a.5.5 0 0 0-.708-.708L3 12.293V7.5a.5.5 0 0 0-1 0v6z\\"/>\\n</svg>","arrow-down-right-circle-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-down-right-circle-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8zm5.904-2.803a.5.5 0 1 0-.707.707L9.293 10H6.525a.5.5 0 0 0 0 1H10.5a.5.5 0 0 0 .5-.5V6.525a.5.5 0 0 0-1 0v2.768L5.904 5.197z\\"/>\\n</svg>","arrow-down-right-circle":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-down-right-circle\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8zm15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM5.854 5.146a.5.5 0 1 0-.708.708L9.243 9.95H6.475a.5.5 0 1 0 0 1h3.975a.5.5 0 0 0 .5-.5V6.475a.5.5 0 1 0-1 0v2.768L5.854 5.146z\\"/>\\n</svg>","arrow-down-right-square-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-down-right-square-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M14 16a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12zM5.904 5.197 10 9.293V6.525a.5.5 0 0 1 1 0V10.5a.5.5 0 0 1-.5.5H6.525a.5.5 0 0 1 0-1h2.768L5.197 5.904a.5.5 0 0 1 .707-.707z\\"/>\\n</svg>","arrow-down-right-square":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-down-right-square\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M15 2a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V2zM0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2zm5.854 3.146a.5.5 0 1 0-.708.708L9.243 9.95H6.475a.5.5 0 1 0 0 1h3.975a.5.5 0 0 0 .5-.5V6.475a.5.5 0 1 0-1 0v2.768L5.854 5.146z\\"/>\\n</svg>","arrow-down-right":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-down-right\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M14 13.5a.5.5 0 0 1-.5.5h-6a.5.5 0 0 1 0-1h4.793L2.146 2.854a.5.5 0 1 1 .708-.708L13 12.293V7.5a.5.5 0 0 1 1 0v6z\\"/>\\n</svg>","arrow-down-short":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-down-short\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M8 4a.5.5 0 0 1 .5.5v5.793l2.146-2.147a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 1 1 .708-.708L7.5 10.293V4.5A.5.5 0 0 1 8 4z\\"/>\\n</svg>","arrow-down-square-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-down-square-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v5.793l2.146-2.147a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 1 1 .708-.708L7.5 10.293V4.5a.5.5 0 0 1 1 0z\\"/>\\n</svg>","arrow-down-square":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-down-square\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M15 2a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V2zM0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2zm8.5 2.5a.5.5 0 0 0-1 0v5.793L5.354 8.146a.5.5 0 1 0-.708.708l3 3a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293V4.5z\\"/>\\n</svg>","arrow-down-up":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-down-up\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M11.5 15a.5.5 0 0 0 .5-.5V2.707l3.146 3.147a.5.5 0 0 0 .708-.708l-4-4a.5.5 0 0 0-.708 0l-4 4a.5.5 0 1 0 .708.708L11 2.707V14.5a.5.5 0 0 0 .5.5zm-7-14a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L4 13.293V1.5a.5.5 0 0 1 .5-.5z\\"/>\\n</svg>","arrow-down":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-down\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z\\"/>\\n</svg>","arrow-left-circle-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-left-circle-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0zm3.5 7.5a.5.5 0 0 1 0 1H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5z\\"/>\\n</svg>","arrow-left-circle":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-left-circle\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8zm15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-4.5-.5a.5.5 0 0 1 0 1H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5z\\"/>\\n</svg>","arrow-left-right":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-left-right\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M1 11.5a.5.5 0 0 0 .5.5h11.793l-3.147 3.146a.5.5 0 0 0 .708.708l4-4a.5.5 0 0 0 0-.708l-4-4a.5.5 0 0 0-.708.708L13.293 11H1.5a.5.5 0 0 0-.5.5zm14-7a.5.5 0 0 1-.5.5H2.707l3.147 3.146a.5.5 0 1 1-.708.708l-4-4a.5.5 0 0 1 0-.708l4-4a.5.5 0 1 1 .708.708L2.707 4H14.5a.5.5 0 0 1 .5.5z\\"/>\\n</svg>","arrow-left-short":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-left-short\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M12 8a.5.5 0 0 1-.5.5H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5a.5.5 0 0 1 .5.5z\\"/>\\n</svg>","arrow-left-square-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-left-square-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M16 14a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12zm-4.5-6.5H5.707l2.147-2.146a.5.5 0 1 0-.708-.708l-3 3a.5.5 0 0 0 0 .708l3 3a.5.5 0 0 0 .708-.708L5.707 8.5H11.5a.5.5 0 0 0 0-1z\\"/>\\n</svg>","arrow-left-square":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-left-square\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M15 2a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V2zM0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2zm11.5 5.5a.5.5 0 0 1 0 1H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5z\\"/>\\n</svg>","arrow-left":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-left\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M15 8a.5.5 0 0 0-.5-.5H2.707l3.147-3.146a.5.5 0 1 0-.708-.708l-4 4a.5.5 0 0 0 0 .708l4 4a.5.5 0 0 0 .708-.708L2.707 8.5H14.5A.5.5 0 0 0 15 8z\\"/>\\n</svg>","arrow-repeat":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-repeat\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M11.534 7h3.932a.25.25 0 0 1 .192.41l-1.966 2.36a.25.25 0 0 1-.384 0l-1.966-2.36a.25.25 0 0 1 .192-.41zm-11 2h3.932a.25.25 0 0 0 .192-.41L2.692 6.23a.25.25 0 0 0-.384 0L.342 8.59A.25.25 0 0 0 .534 9z\\"/>\\n  <path fill-rule=\\"evenodd\\" d=\\"M8 3c-1.552 0-2.94.707-3.857 1.818a.5.5 0 1 1-.771-.636A6.002 6.002 0 0 1 13.917 7H12.9A5.002 5.002 0 0 0 8 3zM3.1 9a5.002 5.002 0 0 0 8.757 2.182.5.5 0 1 1 .771.636A6.002 6.002 0 0 1 2.083 9H3.1z\\"/>\\n</svg>","arrow-return-left":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-return-left\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M14.5 1.5a.5.5 0 0 1 .5.5v4.8a2.5 2.5 0 0 1-2.5 2.5H2.707l3.347 3.346a.5.5 0 0 1-.708.708l-4.2-4.2a.5.5 0 0 1 0-.708l4-4a.5.5 0 1 1 .708.708L2.707 8.3H12.5A1.5 1.5 0 0 0 14 6.8V2a.5.5 0 0 1 .5-.5z\\"/>\\n</svg>","arrow-return-right":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-return-right\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M1.5 1.5A.5.5 0 0 0 1 2v4.8a2.5 2.5 0 0 0 2.5 2.5h9.793l-3.347 3.346a.5.5 0 0 0 .708.708l4.2-4.2a.5.5 0 0 0 0-.708l-4-4a.5.5 0 0 0-.708.708L13.293 8.3H3.5A1.5 1.5 0 0 1 2 6.8V2a.5.5 0 0 0-.5-.5z\\"/>\\n</svg>","arrow-right-circle-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-right-circle-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0zM4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5z\\"/>\\n</svg>","arrow-right-circle":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-right-circle\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8zm15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5z\\"/>\\n</svg>","arrow-right-short":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-right-short\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z\\"/>\\n</svg>","arrow-right-square-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-right-square-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M0 14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2a2 2 0 0 0-2 2v12zm4.5-6.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5a.5.5 0 0 1 0-1z\\"/>\\n</svg>","arrow-right-square":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-right-square\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M15 2a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V2zM0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2zm4.5 5.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5z\\"/>\\n</svg>","arrow-right":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-right\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z\\"/>\\n</svg>","arrow-through-heart-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-through-heart-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M2.854 15.854A.5.5 0 0 1 2 15.5V14H.5a.5.5 0 0 1-.354-.854l1.5-1.5A.5.5 0 0 1 2 11.5h1.793l3.103-3.104a.5.5 0 1 1 .708.708L4.5 12.207V14a.5.5 0 0 1-.146.354l-1.5 1.5ZM16 3.5a.5.5 0 0 1-.854.354L14 2.707l-1.006 1.006c.236.248.44.531.6.845.562 1.096.585 2.517-.213 4.092-.793 1.563-2.395 3.288-5.105 5.08L8 13.912l-.276-.182A23.825 23.825 0 0 1 5.8 12.323L8.31 9.81a1.5 1.5 0 0 0-2.122-2.122L3.657 10.22a8.827 8.827 0 0 1-1.039-1.57c-.798-1.576-.775-2.997-.213-4.093C3.426 2.565 6.18 1.809 8 3.233c1.25-.98 2.944-.928 4.212-.152L13.292 2 12.147.854A.5.5 0 0 1 12.5 0h3a.5.5 0 0 1 .5.5v3Z\\"/>\\n</svg>","arrow-through-heart":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-through-heart\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M2.854 15.854A.5.5 0 0 1 2 15.5V14H.5a.5.5 0 0 1-.354-.854l1.5-1.5A.5.5 0 0 1 2 11.5h1.793l.53-.53c-.771-.802-1.328-1.58-1.704-2.32-.798-1.575-.775-2.996-.213-4.092C3.426 2.565 6.18 1.809 8 3.233c1.25-.98 2.944-.928 4.212-.152L13.292 2 12.147.854A.5.5 0 0 1 12.5 0h3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.854.354L14 2.707l-1.006 1.006c.236.248.44.531.6.845.562 1.096.585 2.517-.213 4.092-.793 1.563-2.395 3.288-5.105 5.08L8 13.912l-.276-.182a21.86 21.86 0 0 1-2.685-2.062l-.539.54V14a.5.5 0 0 1-.146.354l-1.5 1.5Zm2.893-4.894A20.419 20.419 0 0 0 8 12.71c2.456-1.666 3.827-3.207 4.489-4.512.679-1.34.607-2.42.215-3.185-.817-1.595-3.087-2.054-4.346-.761L8 4.62l-.358-.368c-1.259-1.293-3.53-.834-4.346.761-.392.766-.464 1.845.215 3.185.323.636.815 1.33 1.519 2.065l1.866-1.867a.5.5 0 1 1 .708.708L5.747 10.96Z\\"/>\\n</svg>","arrow-up-circle-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-up-circle-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M16 8A8 8 0 1 0 0 8a8 8 0 0 0 16 0zm-7.5 3.5a.5.5 0 0 1-1 0V5.707L5.354 7.854a.5.5 0 1 1-.708-.708l3-3a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1-.708.708L8.5 5.707V11.5z\\"/>\\n</svg>","arrow-up-circle":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-up-circle\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8zm15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-7.5 3.5a.5.5 0 0 1-1 0V5.707L5.354 7.854a.5.5 0 1 1-.708-.708l3-3a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1-.708.708L8.5 5.707V11.5z\\"/>\\n</svg>","arrow-up-left-circle-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-up-left-circle-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-5.904 2.803a.5.5 0 1 0 .707-.707L6.707 6h2.768a.5.5 0 1 0 0-1H5.5a.5.5 0 0 0-.5.5v3.975a.5.5 0 0 0 1 0V6.707l4.096 4.096z\\"/>\\n</svg>","arrow-up-left-circle":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-up-left-circle\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8zm15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-5.904 2.803a.5.5 0 1 0 .707-.707L6.707 6h2.768a.5.5 0 1 0 0-1H5.5a.5.5 0 0 0-.5.5v3.975a.5.5 0 0 0 1 0V6.707l4.096 4.096z\\"/>\\n</svg>","arrow-up-left-square-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-up-left-square-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm8.096 10.803L6 6.707v2.768a.5.5 0 0 1-1 0V5.5a.5.5 0 0 1 .5-.5h3.975a.5.5 0 1 1 0 1H6.707l4.096 4.096a.5.5 0 1 1-.707.707z\\"/>\\n</svg>","arrow-up-left-square":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-up-left-square\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M15 2a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V2zM0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2zm10.096 8.803a.5.5 0 1 0 .707-.707L6.707 6h2.768a.5.5 0 1 0 0-1H5.5a.5.5 0 0 0-.5.5v3.975a.5.5 0 0 0 1 0V6.707l4.096 4.096z\\"/>\\n</svg>","arrow-up-left":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-up-left\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M2 2.5a.5.5 0 0 1 .5-.5h6a.5.5 0 0 1 0 1H3.707l10.147 10.146a.5.5 0 0 1-.708.708L3 3.707V8.5a.5.5 0 0 1-1 0v-6z\\"/>\\n</svg>","arrow-up-right-circle-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-up-right-circle-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M0 8a8 8 0 1 0 16 0A8 8 0 0 0 0 8zm5.904 2.803a.5.5 0 1 1-.707-.707L9.293 6H6.525a.5.5 0 1 1 0-1H10.5a.5.5 0 0 1 .5.5v3.975a.5.5 0 0 1-1 0V6.707l-4.096 4.096z\\"/>\\n</svg>","arrow-up-right-circle":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-up-right-circle\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8zm15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM5.854 10.803a.5.5 0 1 1-.708-.707L9.243 6H6.475a.5.5 0 1 1 0-1h3.975a.5.5 0 0 1 .5.5v3.975a.5.5 0 1 1-1 0V6.707l-4.096 4.096z\\"/>\\n</svg>","arrow-up-right-square-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-up-right-square-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M14 0a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2h12zM5.904 10.803 10 6.707v2.768a.5.5 0 0 0 1 0V5.5a.5.5 0 0 0-.5-.5H6.525a.5.5 0 1 0 0 1h2.768l-4.096 4.096a.5.5 0 0 0 .707.707z\\"/>\\n</svg>","arrow-up-right-square":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-up-right-square\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M15 2a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V2zM0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2zm5.854 8.803a.5.5 0 1 1-.708-.707L9.243 6H6.475a.5.5 0 1 1 0-1h3.975a.5.5 0 0 1 .5.5v3.975a.5.5 0 1 1-1 0V6.707l-4.096 4.096z\\"/>\\n</svg>","arrow-up-right":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-up-right\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M14 2.5a.5.5 0 0 0-.5-.5h-6a.5.5 0 0 0 0 1h4.793L2.146 13.146a.5.5 0 0 0 .708.708L13 3.707V8.5a.5.5 0 0 0 1 0v-6z\\"/>\\n</svg>","arrow-up-short":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-up-short\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M8 12a.5.5 0 0 0 .5-.5V5.707l2.146 2.147a.5.5 0 0 0 .708-.708l-3-3a.5.5 0 0 0-.708 0l-3 3a.5.5 0 1 0 .708.708L7.5 5.707V11.5a.5.5 0 0 0 .5.5z\\"/>\\n</svg>","arrow-up-square-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-up-square-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M2 16a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2zm6.5-4.5V5.707l2.146 2.147a.5.5 0 0 0 .708-.708l-3-3a.5.5 0 0 0-.708 0l-3 3a.5.5 0 1 0 .708.708L7.5 5.707V11.5a.5.5 0 0 0 1 0z\\"/>\\n</svg>","arrow-up-square":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-up-square\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M15 2a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V2zM0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2zm8.5 9.5a.5.5 0 0 1-1 0V5.707L5.354 7.854a.5.5 0 1 1-.708-.708l3-3a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1-.708.708L8.5 5.707V11.5z\\"/>\\n</svg>","arrow-up":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrow-up\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M8 15a.5.5 0 0 0 .5-.5V2.707l3.146 3.147a.5.5 0 0 0 .708-.708l-4-4a.5.5 0 0 0-.708 0l-4 4a.5.5 0 1 0 .708.708L7.5 2.707V14.5a.5.5 0 0 0 .5.5z\\"/>\\n</svg>","arrows-angle-contract":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrows-angle-contract\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M.172 15.828a.5.5 0 0 0 .707 0l4.096-4.096V14.5a.5.5 0 1 0 1 0v-3.975a.5.5 0 0 0-.5-.5H1.5a.5.5 0 0 0 0 1h2.768L.172 15.121a.5.5 0 0 0 0 .707zM15.828.172a.5.5 0 0 0-.707 0l-4.096 4.096V1.5a.5.5 0 1 0-1 0v3.975a.5.5 0 0 0 .5.5H14.5a.5.5 0 0 0 0-1h-2.768L15.828.879a.5.5 0 0 0 0-.707z\\"/>\\n</svg>","arrows-angle-expand":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrows-angle-expand\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M5.828 10.172a.5.5 0 0 0-.707 0l-4.096 4.096V11.5a.5.5 0 0 0-1 0v3.975a.5.5 0 0 0 .5.5H4.5a.5.5 0 0 0 0-1H1.732l4.096-4.096a.5.5 0 0 0 0-.707zm4.344-4.344a.5.5 0 0 0 .707 0l4.096-4.096V4.5a.5.5 0 1 0 1 0V.525a.5.5 0 0 0-.5-.5H11.5a.5.5 0 0 0 0 1h2.768l-4.096 4.096a.5.5 0 0 0 0 .707z\\"/>\\n</svg>","arrows-collapse":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrows-collapse\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M1 8a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 0 1h-13A.5.5 0 0 1 1 8zm7-8a.5.5 0 0 1 .5.5v3.793l1.146-1.147a.5.5 0 0 1 .708.708l-2 2a.5.5 0 0 1-.708 0l-2-2a.5.5 0 1 1 .708-.708L7.5 4.293V.5A.5.5 0 0 1 8 0zm-.5 11.707-1.146 1.147a.5.5 0 0 1-.708-.708l2-2a.5.5 0 0 1 .708 0l2 2a.5.5 0 0 1-.708.708L8.5 11.707V15.5a.5.5 0 0 1-1 0v-3.793z\\"/>\\n</svg>","arrows-expand":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrows-expand\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M1 8a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 0 1h-13A.5.5 0 0 1 1 8zM7.646.146a.5.5 0 0 1 .708 0l2 2a.5.5 0 0 1-.708.708L8.5 1.707V5.5a.5.5 0 0 1-1 0V1.707L6.354 2.854a.5.5 0 1 1-.708-.708l2-2zM8 10a.5.5 0 0 1 .5.5v3.793l1.146-1.147a.5.5 0 0 1 .708.708l-2 2a.5.5 0 0 1-.708 0l-2-2a.5.5 0 0 1 .708-.708L7.5 14.293V10.5A.5.5 0 0 1 8 10z\\"/>\\n</svg>","arrows-fullscreen":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrows-fullscreen\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M5.828 10.172a.5.5 0 0 0-.707 0l-4.096 4.096V11.5a.5.5 0 0 0-1 0v3.975a.5.5 0 0 0 .5.5H4.5a.5.5 0 0 0 0-1H1.732l4.096-4.096a.5.5 0 0 0 0-.707zm4.344 0a.5.5 0 0 1 .707 0l4.096 4.096V11.5a.5.5 0 1 1 1 0v3.975a.5.5 0 0 1-.5.5H11.5a.5.5 0 0 1 0-1h2.768l-4.096-4.096a.5.5 0 0 1 0-.707zm0-4.344a.5.5 0 0 0 .707 0l4.096-4.096V4.5a.5.5 0 1 0 1 0V.525a.5.5 0 0 0-.5-.5H11.5a.5.5 0 0 0 0 1h2.768l-4.096 4.096a.5.5 0 0 0 0 .707zm-4.344 0a.5.5 0 0 1-.707 0L1.025 1.732V4.5a.5.5 0 0 1-1 0V.525a.5.5 0 0 1 .5-.5H4.5a.5.5 0 0 1 0 1H1.732l4.096 4.096a.5.5 0 0 1 0 .707z\\"/>\\n</svg>","arrows-move":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-arrows-move\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M7.646.146a.5.5 0 0 1 .708 0l2 2a.5.5 0 0 1-.708.708L8.5 1.707V5.5a.5.5 0 0 1-1 0V1.707L6.354 2.854a.5.5 0 1 1-.708-.708l2-2zM8 10a.5.5 0 0 1 .5.5v3.793l1.146-1.147a.5.5 0 0 1 .708.708l-2 2a.5.5 0 0 1-.708 0l-2-2a.5.5 0 0 1 .708-.708L7.5 14.293V10.5A.5.5 0 0 1 8 10zM.146 8.354a.5.5 0 0 1 0-.708l2-2a.5.5 0 1 1 .708.708L1.707 7.5H5.5a.5.5 0 0 1 0 1H1.707l1.147 1.146a.5.5 0 0 1-.708.708l-2-2zM10 8a.5.5 0 0 1 .5-.5h3.793l-1.147-1.146a.5.5 0 0 1 .708-.708l2 2a.5.5 0 0 1 0 .708l-2 2a.5.5 0 0 1-.708-.708L14.293 8.5H10.5A.5.5 0 0 1 10 8z\\"/>\\n</svg>","aspect-ratio-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-aspect-ratio-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M0 12.5v-9A1.5 1.5 0 0 1 1.5 2h13A1.5 1.5 0 0 1 16 3.5v9a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 0 12.5zM2.5 4a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 1 0V5h2.5a.5.5 0 0 0 0-1h-3zm11 8a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-1 0V11h-2.5a.5.5 0 0 0 0 1h3z\\"/>\\n</svg>","aspect-ratio":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-aspect-ratio\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M0 3.5A1.5 1.5 0 0 1 1.5 2h13A1.5 1.5 0 0 1 16 3.5v9a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 0 12.5v-9zM1.5 3a.5.5 0 0 0-.5.5v9a.5.5 0 0 0 .5.5h13a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5h-13z\\"/>\\n  <path d=\\"M2 4.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1H3v2.5a.5.5 0 0 1-1 0v-3zm12 7a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1 0-1H13V8.5a.5.5 0 0 1 1 0v3z\\"/>\\n</svg>","asterisk":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-asterisk\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M8 0a1 1 0 0 1 1 1v5.268l4.562-2.634a1 1 0 1 1 1 1.732L10 8l4.562 2.634a1 1 0 1 1-1 1.732L9 9.732V15a1 1 0 1 1-2 0V9.732l-4.562 2.634a1 1 0 1 1-1-1.732L6 8 1.438 5.366a1 1 0 0 1 1-1.732L7 6.268V1a1 1 0 0 1 1-1z\\"/>\\n</svg>","at":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-at\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M13.106 7.222c0-2.967-2.249-5.032-5.482-5.032-3.35 0-5.646 2.318-5.646 5.702 0 3.493 2.235 5.708 5.762 5.708.862 0 1.689-.123 2.304-.335v-.862c-.43.199-1.354.328-2.29.328-2.926 0-4.813-1.88-4.813-4.798 0-2.844 1.921-4.881 4.594-4.881 2.735 0 4.608 1.688 4.608 4.156 0 1.682-.554 2.769-1.416 2.769-.492 0-.772-.28-.772-.76V5.206H8.923v.834h-.11c-.266-.595-.881-.964-1.6-.964-1.4 0-2.378 1.162-2.378 2.823 0 1.737.957 2.906 2.379 2.906.8 0 1.415-.39 1.709-1.087h.11c.081.67.703 1.148 1.503 1.148 1.572 0 2.57-1.415 2.57-3.643zm-7.177.704c0-1.197.54-1.907 1.456-1.907.93 0 1.524.738 1.524 1.907S8.308 9.84 7.371 9.84c-.895 0-1.442-.725-1.442-1.914z\\"/>\\n</svg>","award-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-award-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"m8 0 1.669.864 1.858.282.842 1.68 1.337 1.32L13.4 6l.306 1.854-1.337 1.32-.842 1.68-1.858.282L8 12l-1.669-.864-1.858-.282-.842-1.68-1.337-1.32L2.6 6l-.306-1.854 1.337-1.32.842-1.68L6.331.864 8 0z\\"/>\\n  <path d=\\"M4 11.794V16l4-1 4 1v-4.206l-2.018.306L8 13.126 6.018 12.1 4 11.794z\\"/>\\n</svg>","award":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-award\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M9.669.864 8 0 6.331.864l-1.858.282-.842 1.68-1.337 1.32L2.6 6l-.306 1.854 1.337 1.32.842 1.68 1.858.282L8 12l1.669-.864 1.858-.282.842-1.68 1.337-1.32L13.4 6l.306-1.854-1.337-1.32-.842-1.68L9.669.864zm1.196 1.193.684 1.365 1.086 1.072L12.387 6l.248 1.506-1.086 1.072-.684 1.365-1.51.229L8 10.874l-1.355-.702-1.51-.229-.684-1.365-1.086-1.072L3.614 6l-.25-1.506 1.087-1.072.684-1.365 1.51-.229L8 1.126l1.356.702 1.509.229z\\"/>\\n  <path d=\\"M4 11.794V16l4-1 4 1v-4.206l-2.018.306L8 13.126 6.018 12.1 4 11.794z\\"/>\\n</svg>","back":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-back\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M0 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v2h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-2H2a2 2 0 0 1-2-2V2zm2-1a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H2z\\"/>\\n</svg>","backspace-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-backspace-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M15.683 3a2 2 0 0 0-2-2h-7.08a2 2 0 0 0-1.519.698L.241 7.35a1 1 0 0 0 0 1.302l4.843 5.65A2 2 0 0 0 6.603 15h7.08a2 2 0 0 0 2-2V3zM5.829 5.854a.5.5 0 1 1 .707-.708l2.147 2.147 2.146-2.147a.5.5 0 1 1 .707.708L9.39 8l2.146 2.146a.5.5 0 0 1-.707.708L8.683 8.707l-2.147 2.147a.5.5 0 0 1-.707-.708L7.976 8 5.829 5.854z\\"/>\\n</svg>","backspace-reverse-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-backspace-reverse-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M0 3a2 2 0 0 1 2-2h7.08a2 2 0 0 1 1.519.698l4.843 5.651a1 1 0 0 1 0 1.302L10.6 14.3a2 2 0 0 1-1.52.7H2a2 2 0 0 1-2-2V3zm9.854 2.854a.5.5 0 0 0-.708-.708L7 7.293 4.854 5.146a.5.5 0 1 0-.708.708L6.293 8l-2.147 2.146a.5.5 0 0 0 .708.708L7 8.707l2.146 2.147a.5.5 0 0 0 .708-.708L7.707 8l2.147-2.146z\\"/>\\n</svg>","backspace-reverse":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-backspace-reverse\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M9.854 5.146a.5.5 0 0 1 0 .708L7.707 8l2.147 2.146a.5.5 0 0 1-.708.708L7 8.707l-2.146 2.147a.5.5 0 0 1-.708-.708L6.293 8 4.146 5.854a.5.5 0 1 1 .708-.708L7 7.293l2.146-2.147a.5.5 0 0 1 .708 0z\\"/>\\n  <path d=\\"M2 1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h7.08a2 2 0 0 0 1.519-.698l4.843-5.651a1 1 0 0 0 0-1.302L10.6 1.7A2 2 0 0 0 9.08 1H2zm7.08 1a1 1 0 0 1 .76.35L14.682 8l-4.844 5.65a1 1 0 0 1-.759.35H2a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1h7.08z\\"/>\\n</svg>","backspace":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-backspace\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M5.83 5.146a.5.5 0 0 0 0 .708L7.975 8l-2.147 2.146a.5.5 0 0 0 .707.708l2.147-2.147 2.146 2.147a.5.5 0 0 0 .707-.708L9.39 8l2.146-2.146a.5.5 0 0 0-.707-.708L8.683 7.293 6.536 5.146a.5.5 0 0 0-.707 0z\\"/>\\n  <path d=\\"M13.683 1a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-7.08a2 2 0 0 1-1.519-.698L.241 8.65a1 1 0 0 1 0-1.302L5.084 1.7A2 2 0 0 1 6.603 1h7.08zm-7.08 1a1 1 0 0 0-.76.35L1 8l4.844 5.65a1 1 0 0 0 .759.35h7.08a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1h-7.08z\\"/>\\n</svg>","badge-3d-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-badge-3d-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M10.157 5.968h-.844v4.06h.844c1.116 0 1.621-.667 1.621-2.02 0-1.354-.51-2.04-1.621-2.04z\\"/>\\n  <path d=\\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V4zm5.184 4.368c.646 0 1.055.378 1.06.9.008.537-.427.919-1.086.919-.598-.004-1.037-.325-1.068-.756H3c.03.914.791 1.688 2.153 1.688 1.24 0 2.285-.66 2.272-1.798-.013-.953-.747-1.38-1.292-1.432v-.062c.44-.07 1.125-.527 1.108-1.375-.013-.906-.8-1.57-2.053-1.565-1.31.005-2.043.734-2.074 1.67h1.103c.022-.391.383-.751.936-.751.532 0 .928.33.928.813.004.479-.383.835-.928.835h-.632v.914h.663zM8.126 11h2.189C12.125 11 13 9.893 13 7.985c0-1.894-.861-2.984-2.685-2.984H8.126V11z\\"/>\\n</svg>","badge-3d":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-badge-3d\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M4.52 8.368h.664c.646 0 1.055.378 1.06.9.008.537-.427.919-1.086.919-.598-.004-1.037-.325-1.068-.756H3c.03.914.791 1.688 2.153 1.688 1.24 0 2.285-.66 2.272-1.798-.013-.953-.747-1.38-1.292-1.432v-.062c.44-.07 1.125-.527 1.108-1.375-.013-.906-.8-1.57-2.053-1.565-1.31.005-2.043.734-2.074 1.67h1.103c.022-.391.383-.751.936-.751.532 0 .928.33.928.813.004.479-.383.835-.928.835h-.632v.914zm3.606-3.367V11h2.189C12.125 11 13 9.893 13 7.985c0-1.894-.861-2.984-2.685-2.984H8.126zm1.187.967h.844c1.112 0 1.621.686 1.621 2.04 0 1.353-.505 2.02-1.621 2.02h-.844v-4.06z\\"/>\\n  <path d=\\"M14 3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h12zM2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H2z\\"/>\\n</svg>","badge-4k-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-badge-4k-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M3.577 8.9v.03h1.828V5.898h-.062a46.781 46.781 0 0 0-1.766 3.001z\\"/>\\n  <path d=\\"M2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H2zm2.372 3.715.435-.714h1.71v3.93h.733v.957h-.733V11H5.405V9.888H2.5v-.971c.574-1.077 1.225-2.142 1.872-3.202zm7.73-.714h1.306l-2.14 2.584L13.5 11h-1.428l-1.679-2.624-.615.7V11H8.59V5.001h1.187v2.686h.057L12.102 5z\\"/>\\n</svg>","badge-4k":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-badge-4k\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M4.807 5.001C4.021 6.298 3.203 7.6 2.5 8.917v.971h2.905V11h1.112V9.888h.733V8.93h-.733V5.001h-1.71zm-1.23 3.93v-.032a46.781 46.781 0 0 1 1.766-3.001h.062V8.93H3.577zm9.831-3.93h-1.306L9.835 7.687h-.057V5H8.59v6h1.187V9.075l.615-.699L12.072 11H13.5l-2.232-3.415 2.14-2.584z\\"/>\\n  <path d=\\"M14 3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h12zM2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H2z\\"/>\\n</svg>","badge-8k-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-badge-8k-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M3.9 6.605c0 .51.405.866.95.866.545 0 .945-.356.945-.866s-.4-.852-.945-.852c-.545 0-.95.343-.95.852zm-.192 2.668c0 .589.492.984 1.142.984.646 0 1.143-.395 1.143-.984S5.496 8.28 4.85 8.28c-.65 0-1.142.404-1.142.993z\\"/>\\n  <path d=\\"M2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H2zm5.17 7.348c0 1.041-.927 1.766-2.333 1.766-1.406 0-2.312-.72-2.312-1.762 0-.954.712-1.384 1.257-1.494v-.053c-.51-.154-1.02-.558-1.02-1.331 0-.914.831-1.587 2.088-1.587 1.253 0 2.083.673 2.083 1.587 0 .782-.523 1.182-1.02 1.331v.053c.545.11 1.257.545 1.257 1.49zM12.102 5h1.306l-2.14 2.584 2.232 3.415h-1.428l-1.679-2.624-.615.699v1.925H8.59V5h1.187v2.685h.057L12.102 5z\\"/>\\n</svg>","badge-8k":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-badge-8k\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M4.837 11.114c1.406 0 2.333-.725 2.333-1.766 0-.945-.712-1.38-1.256-1.49v-.053c.496-.15 1.02-.55 1.02-1.331 0-.914-.831-1.587-2.084-1.587-1.257 0-2.087.673-2.087 1.587 0 .773.51 1.177 1.02 1.331v.053c-.546.11-1.258.54-1.258 1.494 0 1.042.906 1.762 2.312 1.762zm.013-3.643c-.545 0-.95-.356-.95-.866s.405-.852.95-.852c.545 0 .945.343.945.852 0 .51-.4.866-.945.866zm0 2.786c-.65 0-1.142-.395-1.142-.984S4.2 8.28 4.85 8.28c.646 0 1.143.404 1.143.993s-.497.984-1.143.984zM13.408 5h-1.306L9.835 7.685h-.057V5H8.59v5.998h1.187V9.075l.615-.699 1.679 2.623H13.5l-2.232-3.414L13.408 5z\\"/>\\n  <path d=\\"M14 3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h12zM2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H2z\\"/>\\n</svg>","badge-ad-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-badge-ad-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M11.35 8.337c0-.699-.42-1.138-1.001-1.138-.584 0-.954.444-.954 1.239v.453c0 .8.374 1.248.972 1.248.588 0 .984-.44.984-1.2v-.602zm-5.413.237-.734-2.426H5.15l-.734 2.426h1.52z\\"/>\\n  <path d=\\"M2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H2zm6.209 6.32c0-1.28.694-2.044 1.753-2.044.655 0 1.156.294 1.336.769h.053v-2.36h1.16V11h-1.138v-.747h-.057c-.145.474-.69.804-1.367.804-1.055 0-1.74-.764-1.74-2.043v-.695zm-4.04 1.138L3.7 11H2.5l2.013-5.999H5.9L7.905 11H6.644l-.47-1.542H4.17z\\"/>\\n</svg>","badge-ad":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-badge-ad\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"m3.7 11 .47-1.542h2.004L6.644 11h1.261L5.901 5.001H4.513L2.5 11h1.2zm1.503-4.852.734 2.426H4.416l.734-2.426h.053zm4.759.128c-1.059 0-1.753.765-1.753 2.043v.695c0 1.279.685 2.043 1.74 2.043.677 0 1.222-.33 1.367-.804h.057V11h1.138V4.685h-1.16v2.36h-.053c-.18-.475-.68-.77-1.336-.77zm.387.923c.58 0 1.002.44 1.002 1.138v.602c0 .76-.396 1.2-.984 1.2-.598 0-.972-.449-.972-1.248v-.453c0-.795.37-1.24.954-1.24z\\"/>\\n  <path d=\\"M14 3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h12zM2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H2z\\"/>\\n</svg>","badge-ar-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-badge-ar-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"m6.031 8.574-.734-2.426h-.052L4.51 8.574h1.52zm3.642-2.641v1.938h1.033c.66 0 1.068-.316 1.068-.95 0-.64-.422-.988-1.05-.988h-1.05z\\"/>\\n  <path d=\\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V4zm4.265 5.458h2.004L6.739 11H8L5.996 5.001H4.607L2.595 11h1.2l.47-1.542zM8.5 5v6h1.173V8.763h1.064L11.787 11h1.327L11.91 8.583C12.455 8.373 13 7.779 13 6.9c0-1.147-.773-1.9-2.105-1.9H8.5z\\"/>\\n</svg>","badge-ar":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-badge-ar\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"m3.794 11 .47-1.542H6.27L6.739 11H8L5.996 5.001H4.607L2.595 11h1.2zm1.503-4.852.734 2.426h-1.52l.734-2.426h.052zm5.598-1.147H8.5V11h1.173V8.763h1.064L11.787 11h1.327L11.91 8.583C12.455 8.373 13 7.779 13 6.9c0-1.147-.773-1.9-2.105-1.9zm-1.222 2.87V5.933h1.05c.63 0 1.05.347 1.05.989 0 .633-.408.95-1.067.95H9.673z\\"/>\\n  <path d=\\"M14 3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h12zM2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H2z\\"/>\\n</svg>","badge-cc-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-badge-cc-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H2zm3.027 4.002c-.83 0-1.319.642-1.319 1.753v.743c0 1.107.48 1.727 1.319 1.727.69 0 1.138-.435 1.186-1.05H7.36v.114c-.057 1.147-1.028 1.938-2.342 1.938-1.613 0-2.518-1.028-2.518-2.729v-.747C2.5 6.051 3.414 5 5.018 5c1.318 0 2.29.813 2.342 2v.11H6.213c-.048-.638-.505-1.108-1.186-1.108zm6.14 0c-.831 0-1.319.642-1.319 1.753v.743c0 1.107.48 1.727 1.318 1.727.69 0 1.139-.435 1.187-1.05H13.5v.114c-.057 1.147-1.028 1.938-2.342 1.938-1.613 0-2.518-1.028-2.518-2.729v-.747c0-1.7.914-2.751 2.518-2.751 1.318 0 2.29.813 2.342 2v.11h-1.147c-.048-.638-.505-1.108-1.187-1.108z\\"/>\\n</svg>","badge-cc":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-badge-cc\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M3.708 7.755c0-1.111.488-1.753 1.319-1.753.681 0 1.138.47 1.186 1.107H7.36V7c-.052-1.186-1.024-2-2.342-2C3.414 5 2.5 6.05 2.5 7.751v.747c0 1.7.905 2.73 2.518 2.73 1.314 0 2.285-.792 2.342-1.939v-.114H6.213c-.048.615-.496 1.05-1.186 1.05-.84 0-1.319-.62-1.319-1.727v-.743zm6.14 0c0-1.111.488-1.753 1.318-1.753.682 0 1.139.47 1.187 1.107H13.5V7c-.053-1.186-1.024-2-2.342-2C9.554 5 8.64 6.05 8.64 7.751v.747c0 1.7.905 2.73 2.518 2.73 1.314 0 2.285-.792 2.342-1.939v-.114h-1.147c-.048.615-.497 1.05-1.187 1.05-.839 0-1.318-.62-1.318-1.727v-.743z\\"/>\\n  <path d=\\"M14 3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h12zM2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H2z\\"/>\\n</svg>","badge-hd-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-badge-hd-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M10.53 5.968h-.843v4.06h.843c1.117 0 1.622-.667 1.622-2.02 0-1.354-.51-2.04-1.622-2.04z\\"/>\\n  <path d=\\"M2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H2zm5.396 3.001V11H6.209V8.43H3.687V11H2.5V5.001h1.187v2.44h2.522V5h1.187zM8.5 11V5.001h2.188c1.824 0 2.685 1.09 2.685 2.984C13.373 9.893 12.5 11 10.69 11H8.5z\\"/>\\n</svg>","badge-hd":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-badge-hd\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M7.396 11V5.001H6.209v2.44H3.687V5H2.5v6h1.187V8.43h2.522V11h1.187zM8.5 5.001V11h2.188c1.811 0 2.685-1.107 2.685-3.015 0-1.894-.86-2.984-2.684-2.984H8.5zm1.187.967h.843c1.112 0 1.622.686 1.622 2.04 0 1.353-.505 2.02-1.622 2.02h-.843v-4.06z\\"/>\\n  <path d=\\"M14 3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h12zM2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H2z\\"/>\\n</svg>","badge-sd-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-badge-sd-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M10.338 5.968h-.844v4.06h.844c1.116 0 1.622-.667 1.622-2.02 0-1.354-.51-2.04-1.622-2.04Z\\"/>\\n  <path d=\\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V4Zm5.077 7.114c1.521 0 2.378-.764 2.378-1.88 0-1.007-.642-1.473-1.613-1.692l-.932-.216c-.527-.114-.821-.351-.821-.712 0-.466.39-.804 1.046-.804.637 0 1.028.33 1.103.76h1.125c-.058-.923-.849-1.692-2.22-1.692-1.322 0-2.24.717-2.24 1.815 0 .91.588 1.446 1.52 1.657l.927.215c.624.145.923.36.923.778 0 .492-.391.83-1.13.83-.707 0-1.155-.342-1.234-.808H2.762c.052.95.79 1.75 2.315 1.75ZM8.307 11h2.19c1.81 0 2.684-1.107 2.684-3.015 0-1.894-.861-2.984-2.685-2.984H8.308V11Z\\"/>\\n</svg>","badge-sd":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-badge-sd\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M15 4a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4ZM0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V4Zm5.077 7.114c-1.524 0-2.263-.8-2.315-1.749h1.147c.079.466.527.809 1.234.809.739 0 1.13-.339 1.13-.83 0-.418-.3-.634-.923-.779l-.927-.215c-.932-.21-1.52-.747-1.52-1.657 0-1.098.918-1.815 2.24-1.815 1.371 0 2.162.77 2.22 1.692H6.238c-.075-.43-.466-.76-1.103-.76-.655 0-1.046.338-1.046.804 0 .36.294.598.821.712l.932.216c.971.22 1.613.685 1.613 1.691 0 1.117-.857 1.881-2.378 1.881ZM8.307 11V5.001h2.19c1.823 0 2.684 1.09 2.684 2.984 0 1.908-.874 3.015-2.685 3.015H8.308Zm2.031-5.032h-.844v4.06h.844c1.116 0 1.622-.667 1.622-2.02 0-1.354-.51-2.04-1.622-2.04Z\\"/>\\n</svg>","badge-tm-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-badge-tm-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H2zm3.295 3.995V11H4.104V5.995h-1.7V5H7v.994H5.295zM8.692 7.01V11H7.633V5.001h1.209l1.71 3.894h.039l1.71-3.894H13.5V11h-1.072V7.01h-.057l-1.42 3.239h-.773L8.75 7.008h-.058z\\"/>\\n</svg>","badge-tm":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-badge-tm\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M5.295 11V5.995H7V5H2.403v.994h1.701V11h1.19zm3.397 0V7.01h.058l1.428 3.239h.773l1.42-3.24h.057V11H13.5V5.001h-1.2l-1.71 3.894h-.039l-1.71-3.894H7.634V11h1.06z\\"/>\\n  <path d=\\"M14 3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h12zM2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H2z\\"/>\\n</svg>","badge-vo-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-badge-vo-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M12.296 8.394v-.782c0-1.156-.571-1.736-1.362-1.736-.796 0-1.363.58-1.363 1.736v.782c0 1.156.567 1.732 1.363 1.732.79 0 1.362-.576 1.362-1.732z\\"/>\\n  <path d=\\"M2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H2zm11.5 5.62v.77c0 1.691-.962 2.724-2.566 2.724-1.604 0-2.571-1.033-2.571-2.724v-.77c0-1.704.967-2.733 2.57-2.733 1.605 0 2.567 1.037 2.567 2.734zM5.937 11H4.508L2.5 5.001h1.375L5.22 9.708h.057L6.61 5.001h1.318L5.937 11z\\"/>\\n</svg>","badge-vo":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-badge-vo\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M4.508 11h1.429l1.99-5.999H6.61L5.277 9.708H5.22L3.875 5.001H2.5L4.508 11zM13.5 8.39v-.77c0-1.696-.962-2.733-2.566-2.733-1.604 0-2.571 1.029-2.571 2.734v.769c0 1.691.967 2.724 2.57 2.724 1.605 0 2.567-1.033 2.567-2.724zm-1.204-.778v.782c0 1.156-.571 1.732-1.362 1.732-.796 0-1.363-.576-1.363-1.732v-.782c0-1.156.567-1.736 1.363-1.736.79 0 1.362.58 1.362 1.736z\\"/>\\n  <path d=\\"M14 3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h12zM2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H2z\\"/>\\n</svg>","badge-vr-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-badge-vr-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M9.673 5.933v1.938h1.033c.66 0 1.068-.316 1.068-.95 0-.64-.422-.988-1.05-.988h-1.05z\\"/>\\n  <path d=\\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V4zm5.937 7 1.99-5.999H6.61L5.277 9.708H5.22L3.875 5.001H2.5L4.508 11h1.429zM8.5 5.001V11h1.173V8.763h1.064L11.787 11h1.327L11.91 8.583C12.455 8.373 13 7.779 13 6.9c0-1.147-.773-1.9-2.105-1.9H8.5z\\"/>\\n</svg>","badge-vr":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-badge-vr\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M14 3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h12zM2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H2z\\"/>\\n  <path d=\\"M4.508 11h1.429l1.99-5.999H6.61L5.277 9.708H5.22L3.875 5.001H2.5L4.508 11zm6.387-5.999H8.5V11h1.173V8.763h1.064L11.787 11h1.327L11.91 8.583C12.455 8.373 13 7.779 13 6.9c0-1.147-.773-1.9-2.105-1.9zm-1.222 2.87V5.933h1.05c.63 0 1.05.347 1.05.989 0 .633-.408.95-1.067.95H9.673z\\"/>\\n</svg>","badge-wc-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-badge-wc-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V4zm11.666 1.89c.682 0 1.139.47 1.187 1.107H14v-.11c-.053-1.187-1.024-2-2.342-2-1.604 0-2.518 1.05-2.518 2.751v.747c0 1.7.905 2.73 2.518 2.73 1.314 0 2.285-.792 2.342-1.939v-.114h-1.147c-.048.615-.497 1.05-1.187 1.05-.839 0-1.318-.62-1.318-1.727v-.742c0-1.112.488-1.754 1.318-1.754zm-6.188.926h.044L6.542 11h1.006L9 5.001H7.818l-.82 4.355h-.056L5.97 5.001h-.94l-.972 4.355h-.053l-.827-4.355H2L3.452 11h1.005l1.02-4.184z\\"/>\\n</svg>","badge-wc":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-badge-wc\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M10.348 7.643c0-1.112.488-1.754 1.318-1.754.682 0 1.139.47 1.187 1.108H14v-.11c-.053-1.187-1.024-2-2.342-2-1.604 0-2.518 1.05-2.518 2.751v.747c0 1.7.905 2.73 2.518 2.73 1.314 0 2.285-.792 2.342-1.939v-.114h-1.147c-.048.615-.497 1.05-1.187 1.05-.839 0-1.318-.62-1.318-1.727v-.742zM4.457 11l1.02-4.184h.045L6.542 11h1.006L9 5.001H7.818l-.82 4.355h-.056L5.97 5.001h-.94l-.972 4.355h-.053l-.827-4.355H2L3.452 11h1.005z\\"/>\\n  <path d=\\"M14 3a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h12zM2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H2z\\"/>\\n</svg>","bag-check-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-bag-check-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M10.5 3.5a2.5 2.5 0 0 0-5 0V4h5v-.5zm1 0V4H15v10a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V4h3.5v-.5a3.5 3.5 0 1 1 7 0zm-.646 5.354a.5.5 0 0 0-.708-.708L7.5 10.793 6.354 9.646a.5.5 0 1 0-.708.708l1.5 1.5a.5.5 0 0 0 .708 0l3-3z\\"/>\\n</svg>","bag-check":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-bag-check\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M10.854 8.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 0 1 .708-.708L7.5 10.793l2.646-2.647a.5.5 0 0 1 .708 0z\\"/>\\n  <path d=\\"M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z\\"/>\\n</svg>","bag-dash-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-bag-dash-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M10.5 3.5a2.5 2.5 0 0 0-5 0V4h5v-.5zm1 0V4H15v10a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V4h3.5v-.5a3.5 3.5 0 1 1 7 0zM6 9.5a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1H6z\\"/>\\n</svg>","bag-dash":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-bag-dash\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M5.5 10a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 0 1H6a.5.5 0 0 1-.5-.5z\\"/>\\n  <path d=\\"M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z\\"/>\\n</svg>","bag-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-bag-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5z\\"/>\\n</svg>","bag-heart-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-bag-heart-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path d=\\"M11.5 4v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5ZM8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1Zm0 6.993c1.664-1.711 5.825 1.283 0 5.132-5.825-3.85-1.664-6.843 0-5.132Z\\"/>\\n</svg>","bag-heart":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-bag-heart\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M10.5 3.5a2.5 2.5 0 0 0-5 0V4h5v-.5Zm1 0V4H15v10a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V4h3.5v-.5a3.5 3.5 0 1 1 7 0ZM14 14V5H2v9a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1ZM8 7.993c1.664-1.711 5.825 1.283 0 5.132-5.825-3.85-1.664-6.843 0-5.132Z\\"/>\\n</svg>","bag-plus-fill":"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"16\\" height=\\"16\\" fill=\\"currentColor\\" class=\\"bi bi-bag-plus-fill\\" viewBox=\\"0 0 16 16\\">\\n  <path fill-rule=\\"evenodd\\" d=\\"M10.5 3.5a2.5 2.5 0 0 0-5 0V4h5v-.5zm1 0V4H15v10a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V4h3.5v-.5a3.5 3.5 0 1 1 7 0zM8.5 8a.5.5 0 0 0-1 0v1.5H6a.5.5 0 0 0 0 1h1.5V12a.5.5 0 0 0 1 0v-1.5H10a.5.5 0 0 0 0-1H8.5V8z\\"/>\\n</svg>","bag-pl