@coinswap-app/uikit 1.0.3 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs.js CHANGED
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  var React = require('react');
4
- var styled = require('styled-components');
4
+ var styledComponents = require('styled-components');
5
5
  var styledSystem = require('styled-system');
6
6
  var get = require('lodash/get');
7
7
  var jsxRuntime = require('react/jsx-runtime');
@@ -332,9 +332,9 @@ var getThemeValue = function getThemeValue(path, fallback) {
332
332
  };
333
333
 
334
334
  var _templateObject$2b, _templateObject2$16, _templateObject3$O;
335
- var rotate$1 = styled.keyframes(_templateObject$2b || (_templateObject$2b = _taggedTemplateLiteral(["\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n"])));
336
- var spinStyle = styled.css(_templateObject2$16 || (_templateObject2$16 = _taggedTemplateLiteral(["\n animation: ", " 2s linear infinite;\n"])), rotate$1);
337
- var Svg = styled("svg")(_templateObject3$O || (_templateObject3$O = _taggedTemplateLiteral(["\n fill: ", ";\n flex-shrink: 0;\n\n ", "\n ", "\n path {\n fill: ", ";\n //Opacity set on 0.5\n fill-opacity: ", ";\n }\n"])), function (_ref) {
335
+ var rotate$1 = styledComponents.keyframes(_templateObject$2b || (_templateObject$2b = _taggedTemplateLiteral(["\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n"])));
336
+ var spinStyle = styledComponents.css(_templateObject2$16 || (_templateObject2$16 = _taggedTemplateLiteral(["\n animation: ", " 2s linear infinite;\n"])), rotate$1);
337
+ var Svg = styledComponents.styled("svg")(_templateObject3$O || (_templateObject3$O = _taggedTemplateLiteral(["\n fill: ", ";\n flex-shrink: 0;\n\n ", "\n ", "\n path {\n fill: ", ";\n //Opacity set on 0.5\n fill-opacity: ", ";\n }\n"])), function (_ref) {
338
338
  var theme = _ref.theme,
339
339
  color = _ref.color;
340
340
  return getThemeValue("colors.".concat(color), color)(theme);
@@ -413,7 +413,7 @@ var getFontSize = function getFontSize(_ref2) {
413
413
  small = _ref2.small;
414
414
  return small ? "14px" : fontSize || "16px";
415
415
  };
416
- var Text = styled.div(_templateObject$2a || (_templateObject$2a = _taggedTemplateLiteral(["\n color: ", ";\n font-size: ", ";\n font-weight: ", ";\n line-height: 1.5;\n ", "\n ", "\n ", "\n"])), getColor$1, getFontSize, function (_ref3) {
416
+ var Text = styledComponents.styled.div(_templateObject$2a || (_templateObject$2a = _taggedTemplateLiteral(["\n color: ", ";\n font-size: ", ";\n font-weight: ", ";\n line-height: 1.5;\n ", "\n ", "\n ", "\n"])), getColor$1, getFontSize, function (_ref3) {
417
417
  var bold = _ref3.bold;
418
418
  return bold ? 700 : 400;
419
419
  }, function (_ref4) {
@@ -488,7 +488,7 @@ var getButtonVariantProp$3 = function getButtonVariantProp(prop) {
488
488
  return theme.button[variant][prop];
489
489
  };
490
490
  };
491
- var StyledButton$2 = styled.button(_templateObject$29 || (_templateObject$29 = _taggedTemplateLiteral(["\n align-items: center;\n background-color: ", ";\n border: ", ";\n border-radius: 10px;\n color: ", ";\n cursor: pointer;\n display: inline-flex;\n font-family: inherit;\n font-size: 16px;\n font-weight: 600;\n /* max-content instead of auto for Safari fix */\n width: ", ";\n height: ", ";\n line-height: 1;\n letter-spacing: 0.03em;\n justify-content: center;\n outline: 0;\n padding: ", ";\n transition: background-color 0.2s;\n opacity: ", ";\n\n &:hover:not(:disabled):not(.button--disabled):not(:active) {\n background-color: ", ";\n border-color: ", ";\n }\n\n &:focus:not(:active) {\n box-shadow: 0 0 0 1px ", ";\n }\n\n &:active {\n background-color: ", ";\n box-shadow: ", ";\n }\n\n ", "\n ", "\n ", "\n"])), getButtonVariantProp$3("background"), getButtonVariantProp$3("border"), function (_ref4) {
491
+ var StyledButton$2 = styledComponents.styled.button(_templateObject$29 || (_templateObject$29 = _taggedTemplateLiteral(["\n align-items: center;\n background-color: ", ";\n border: ", ";\n border-radius: 10px;\n color: ", ";\n cursor: pointer;\n display: inline-flex;\n font-family: inherit;\n font-size: 16px;\n font-weight: 600;\n /* max-content instead of auto for Safari fix */\n width: ", ";\n height: ", ";\n line-height: 1;\n letter-spacing: 0.03em;\n justify-content: center;\n outline: 0;\n padding: ", ";\n transition: background-color 0.2s;\n opacity: ", ";\n\n &:hover:not(:disabled):not(.button--disabled):not(:active) {\n background-color: ", ";\n border-color: ", ";\n }\n\n &:focus:not(:active) {\n box-shadow: 0 0 0 1px ", ";\n }\n\n &:active {\n background-color: ", ";\n box-shadow: ", ";\n }\n\n ", "\n ", "\n ", "\n"])), getButtonVariantProp$3("background"), getButtonVariantProp$3("border"), function (_ref4) {
492
492
  var white = _ref4.white;
493
493
  return white ? "white" : getButtonVariantProp$3("color");
494
494
  }, function (_ref5) {
@@ -1416,7 +1416,7 @@ var Icon$1W = function Icon(_ref) {
1416
1416
  };
1417
1417
 
1418
1418
  var Icon$1V = function Icon(props) {
1419
- var theme = styled.useTheme();
1419
+ var theme = styledComponents.useTheme();
1420
1420
  var primaryColor = theme.isDark ? "#3C3742" : "#e9eaeb";
1421
1421
  var secondaryColor = theme.isDark ? "#666171" : "#bdc2c4";
1422
1422
  return /*#__PURE__*/jsxRuntime.jsxs(Svg, _objectSpread2(_objectSpread2({
@@ -7915,10 +7915,10 @@ var Icon$T = function Icon(props) {
7915
7915
  };
7916
7916
 
7917
7917
  var _templateObject$28, _templateObject2$15;
7918
- var ButtonText = styled.span(_templateObject$28 || (_templateObject$28 = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 16px;\n line-height: 28px;\n width: 84px;\n transition: all 0.5s ease-in;\n display: ", ";\n"])), function (props) {
7918
+ var ButtonText = styledComponents.styled.span(_templateObject$28 || (_templateObject$28 = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 16px;\n line-height: 28px;\n width: 84px;\n transition: all 0.5s ease-in;\n display: ", ";\n"])), function (props) {
7919
7919
  return props.extended ? "block" : "none";
7920
7920
  });
7921
- var RampButtonWrapper$1 = styled(Button$1)(_templateObject2$15 || (_templateObject2$15 = _taggedTemplateLiteral(["\n padding: 6px 10px;\n padding: ", ";\n outline: none;\n border: none;\n width: ", "px;\n height: 40px;\n background: ", ";\n border-radius: 10px;\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n cursor: pointer;\n overflow: hidden;\n transition: all 0.5s ease-in;\n"])), function (props) {
7921
+ var RampButtonWrapper$1 = styledComponents.styled(Button$1)(_templateObject2$15 || (_templateObject2$15 = _taggedTemplateLiteral(["\n padding: 6px 10px;\n padding: ", ";\n outline: none;\n border: none;\n width: ", "px;\n height: 40px;\n background: ", ";\n border-radius: 10px;\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n cursor: pointer;\n overflow: hidden;\n transition: all 0.5s ease-in;\n"])), function (props) {
7922
7922
  return props.extended ? "6px 25px" : "6px 10px";
7923
7923
  }, function (props) {
7924
7924
  return props.extended ? 110 : 60;
@@ -7947,13 +7947,13 @@ var RampButtonLite = function RampButtonLite(_ref2) {
7947
7947
  };
7948
7948
 
7949
7949
  var _templateObject$27;
7950
- var IconButton = styled(Button$1)(_templateObject$27 || (_templateObject$27 = _taggedTemplateLiteral(["\n padding: 0;\n width: ", ";\n margin: 0px 4px;\n border: none;\n outline: none;\n"])), function (_ref) {
7950
+ var IconButton = styledComponents.styled(Button$1)(_templateObject$27 || (_templateObject$27 = _taggedTemplateLiteral(["\n padding: 0;\n width: ", ";\n margin: 0px 4px;\n border: none;\n outline: none;\n"])), function (_ref) {
7951
7951
  var size = _ref.size;
7952
7952
  return size === "sm" ? "32px" : "60px";
7953
7953
  });
7954
7954
 
7955
7955
  var _templateObject$26;
7956
- var RampButtonWrapper = styled.button(_templateObject$26 || (_templateObject$26 = _taggedTemplateLiteral(["\n padding: 6px 10px;\n outline: none;\n border: none;\n width: ", "px;\n height: 40px;\n background: #2b2b38;\n border-radius: 10px;\n display: flex;\n flex-direction: row;\n justify-content: space-around;\n align-items: center;\n color: black;\n cursor: pointer;\n position: relative;\n overflow: hidden;\n &:active {\n background: ", ";\n }\n transition: all 0.5s ease-in;\n"])), function (props) {
7956
+ var RampButtonWrapper = styledComponents.styled.button(_templateObject$26 || (_templateObject$26 = _taggedTemplateLiteral(["\n padding: 6px 10px;\n outline: none;\n border: none;\n width: ", "px;\n height: 40px;\n background: #2b2b38;\n border-radius: 10px;\n display: flex;\n flex-direction: row;\n justify-content: space-around;\n align-items: center;\n color: black;\n cursor: pointer;\n position: relative;\n overflow: hidden;\n &:active {\n background: ", ";\n }\n transition: all 0.5s ease-in;\n"])), function (props) {
7957
7957
  return props.extended ? 108 : 70;
7958
7958
  }, function (_ref) {
7959
7959
  var theme = _ref.theme;
@@ -7978,10 +7978,10 @@ var RampButton = function RampButton(_ref2) {
7978
7978
  };
7979
7979
 
7980
7980
  var _templateObject$25;
7981
- var Box = styled.div(_templateObject$25 || (_templateObject$25 = _taggedTemplateLiteral(["\n ", "\n ", "\n ", "\n ", "\n ", "\n"])), styledSystem.background, styledSystem.border, styledSystem.layout, styledSystem.position, styledSystem.space);
7981
+ var Box = styledComponents.styled.div(_templateObject$25 || (_templateObject$25 = _taggedTemplateLiteral(["\n ", "\n ", "\n ", "\n ", "\n ", "\n"])), styledSystem.background, styledSystem.border, styledSystem.layout, styledSystem.position, styledSystem.space);
7982
7982
 
7983
7983
  var _templateObject$24;
7984
- var Flex = styled(Box)(_templateObject$24 || (_templateObject$24 = _taggedTemplateLiteral(["\n display: flex;\n ", "\n"])), styledSystem.flexbox);
7984
+ var Flex = styledComponents.styled(Box)(_templateObject$24 || (_templateObject$24 = _taggedTemplateLiteral(["\n display: flex;\n ", "\n"])), styledSystem.flexbox);
7985
7985
 
7986
7986
  var variants$3 = {
7987
7987
  INFO: "info",
@@ -8021,14 +8021,14 @@ var getIcon = function getIcon() {
8021
8021
  return Icon$2E;
8022
8022
  }
8023
8023
  };
8024
- var IconLabel = styled.div(_templateObject$23 || (_templateObject$23 = _taggedTemplateLiteral(["\n background-color: ", ";\n border-radius: 10px 0 0 10px;\n color: black;\n padding: 12px;\n"])), getThemeColor);
8024
+ var IconLabel = styledComponents.styled.div(_templateObject$23 || (_templateObject$23 = _taggedTemplateLiteral(["\n background-color: ", ";\n border-radius: 10px 0 0 10px;\n color: black;\n padding: 12px;\n"])), getThemeColor);
8025
8025
  var withHandlerSpacing = 32 + 12 + 8; // button size + inner spacing + handler position
8026
- var Details = styled.div(_templateObject2$14 || (_templateObject2$14 = _taggedTemplateLiteral(["\n flex: 1;\n padding-bottom: 12px;\n padding-left: 12px;\n padding-right: ", ";\n padding-top: 12px;\n"])), function (_ref2) {
8026
+ var Details = styledComponents.styled.div(_templateObject2$14 || (_templateObject2$14 = _taggedTemplateLiteral(["\n flex: 1;\n padding-bottom: 12px;\n padding-left: 12px;\n padding-right: ", ";\n padding-top: 12px;\n"])), function (_ref2) {
8027
8027
  var hasHandler = _ref2.hasHandler;
8028
8028
  return hasHandler ? "".concat(withHandlerSpacing, "px") : "12px";
8029
8029
  });
8030
- var CloseHandler = styled.div(_templateObject3$N || (_templateObject3$N = _taggedTemplateLiteral(["\n border-radius: 0 16px 16px 0;\n right: 8px;\n position: absolute;\n top: 8px;\n"])));
8031
- var StyledAlert = styled(Flex)(_templateObject4$y || (_templateObject4$y = _taggedTemplateLiteral(["\n position: relative;\n background: ", ";\n @-moz-document url-prefix() {\n background: rgba(36, 36, 36, 0.95) !important;\n }\n box-shadow: 0 13px 20px rgba(0, 0, 0, 0.25);\n border: 1px solid ", ";\n border-radius: 10px;\n"])), function (_ref3) {
8030
+ var CloseHandler = styledComponents.styled.div(_templateObject3$N || (_templateObject3$N = _taggedTemplateLiteral(["\n border-radius: 0 16px 16px 0;\n right: 8px;\n position: absolute;\n top: 8px;\n"])));
8031
+ var StyledAlert = styledComponents.styled(Flex)(_templateObject4$y || (_templateObject4$y = _taggedTemplateLiteral(["\n position: relative;\n background: ", ";\n @-moz-document url-prefix() {\n background: rgba(36, 36, 36, 0.95) !important;\n }\n box-shadow: 0 13px 20px rgba(0, 0, 0, 0.25);\n border: 1px solid ", ";\n border-radius: 10px;\n"])), function (_ref3) {
8032
8032
  var theme = _ref3.theme;
8033
8033
  return theme.backgrounds.secondary;
8034
8034
  }, function (_ref4) {
@@ -8079,7 +8079,7 @@ var observerOptions = {
8079
8079
  };
8080
8080
 
8081
8081
  var _templateObject$22;
8082
- var Wrapper$3 = styled.div(_templateObject$22 || (_templateObject$22 = _taggedTemplateLiteral(["\n position: relative;\n background-position: center center;\n background-repeat: no-repeat;\n background-size: cover;\n height: ", "px;\n max-width: ", "px;\n max-height: ", "px;\n width: 100%;\n padding-top: ", "%;\n ", "\n"])), function (_ref) {
8082
+ var Wrapper$3 = styledComponents.styled.div(_templateObject$22 || (_templateObject$22 = _taggedTemplateLiteral(["\n position: relative;\n background-position: center center;\n background-repeat: no-repeat;\n background-size: cover;\n height: ", "px;\n max-width: ", "px;\n max-height: ", "px;\n width: 100%;\n padding-top: ", "%;\n ", "\n"])), function (_ref) {
8083
8083
  var height = _ref.height,
8084
8084
  responsive = _ref.responsive;
8085
8085
  return responsive ? 0 : height;
@@ -8098,8 +8098,8 @@ var Wrapper$3 = styled.div(_templateObject$22 || (_templateObject$22 = _taggedTe
8098
8098
 
8099
8099
  var _excluded$q = ["src", "alt"];
8100
8100
  var _templateObject$21, _templateObject2$13;
8101
- var StyledImage = styled.img(_templateObject$21 || (_templateObject$21 = _taggedTemplateLiteral(["\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n max-width: 100%;\n"])));
8102
- var Placeholder = styled.div(_templateObject2$13 || (_templateObject2$13 = _taggedTemplateLiteral(["\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n"])));
8101
+ var StyledImage = styledComponents.styled.img(_templateObject$21 || (_templateObject$21 = _taggedTemplateLiteral(["\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n max-width: 100%;\n"])));
8102
+ var Placeholder = styledComponents.styled.div(_templateObject2$13 || (_templateObject2$13 = _taggedTemplateLiteral(["\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n"])));
8103
8103
  var Image = function Image(_ref) {
8104
8104
  var src = _ref.src,
8105
8105
  alt = _ref.alt,
@@ -8178,7 +8178,7 @@ var grids = {
8178
8178
  mobile: "grid-template-columns: repeat(".concat(gridsMap.mobile.gridColumns, ", minmax(0, 1fr));\n grid-gap: 20px;\n "),
8179
8179
  desktop: "grid-template-columns: repeat(".concat(gridsMap.desktop.gridColumns, ", minmax(0, 1fr));\n grid-gap: 24px;\n ")
8180
8180
  };
8181
- var gridLayout = styled.css(_templateObject$20 || (_templateObject$20 = _taggedTemplateLiteral(["\n display: grid;\n ", " {\n ", ";\n }\n ", " {\n ", ";\n }\n"])), function (_ref) {
8181
+ var gridLayout = styledComponents.css(_templateObject$20 || (_templateObject$20 = _taggedTemplateLiteral(["\n display: grid;\n ", " {\n ", ";\n }\n ", " {\n ", ";\n }\n"])), function (_ref) {
8182
8182
  var theme = _ref.theme;
8183
8183
  return theme.mediaQueries.xs;
8184
8184
  }, grids.mobile, function (_ref2) {
@@ -8416,7 +8416,7 @@ var style = _defineProperty(_defineProperty(_defineProperty(_defineProperty({},
8416
8416
  fontSize: "48px",
8417
8417
  fontSizeLg: "64px"
8418
8418
  });
8419
- var Heading = styled(Text).attrs({
8419
+ var Heading = styledComponents.styled(Text).attrs({
8420
8420
  bold: true
8421
8421
  })(_templateObject$1$ || (_templateObject$1$ = _taggedTemplateLiteral(["\n font-size: ", ";\n font-weight: 600;\n line-height: 1.1;\n\n ", " {\n font-size: ", ";\n }\n"])), function (_ref) {
8422
8422
  var size = _ref.size;
@@ -8433,7 +8433,7 @@ Heading.defaultProps = {
8433
8433
  };
8434
8434
 
8435
8435
  var _templateObject$1_, _templateObject2$12, _templateObject3$M, _templateObject4$x;
8436
- var StyledModal = styled.div(_templateObject$1_ || (_templateObject$1_ = _taggedTemplateLiteral(["\n background: ", ";\n box-shadow: 0 13px 20px rgba(0, 0, 0, 0.25);\n @-moz-document url-prefix() {\n background: #191921 !important;\n }\n border-radius: 15px;\n width: 100%;\n z-index: 99;\n overflow-y: auto;\n padding-bottom: 8px;\n ", " {\n width: auto;\n min-width: 360px;\n max-width: 100%;\n max-height: 80%;\n }\n ", " {\n max-height: 80vh;\n }\n"])), function (_ref) {
8436
+ var StyledModal = styledComponents.styled.div(_templateObject$1_ || (_templateObject$1_ = _taggedTemplateLiteral(["\n background: ", ";\n box-shadow: 0 13px 20px rgba(0, 0, 0, 0.25);\n @-moz-document url-prefix() {\n background: #191921 !important;\n }\n border-radius: 15px;\n width: 100%;\n z-index: 99;\n overflow-y: auto;\n padding-bottom: 8px;\n ", " {\n width: auto;\n min-width: 360px;\n max-width: 100%;\n max-height: 80%;\n }\n ", " {\n max-height: 80vh;\n }\n"])), function (_ref) {
8437
8437
  var theme = _ref.theme;
8438
8438
  return theme.colors.card;
8439
8439
  }, function (_ref2) {
@@ -8443,9 +8443,9 @@ var StyledModal = styled.div(_templateObject$1_ || (_templateObject$1_ = _tagged
8443
8443
  var theme = _ref3.theme;
8444
8444
  return theme.mediaQueries.mobile;
8445
8445
  });
8446
- var CloseButton$1 = styled(Button$1)(_templateObject2$12 || (_templateObject2$12 = _taggedTemplateLiteral(["\n z-index: 99999;\n width: 16px;\n border: none;\n align-items: flex-start !important;\n padding: 0px !important;\n &:hover:not(:disabled):not(.button--disabled):not(:active) {\n background-color: transparent;\n border-color: transparent;\n }\n &:focus:not(:active) {\n box-shadow: none;\n }\n"])));
8447
- var ModalHeader = styled.div(_templateObject3$M || (_templateObject3$M = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n padding: 24px 24px 0;\n"])));
8448
- var ModalTitle = styled(Flex)(_templateObject4$x || (_templateObject4$x = _taggedTemplateLiteral(["\n align-items: center;\n flex: 1;\n"])));
8446
+ var CloseButton$1 = styledComponents.styled(Button$1)(_templateObject2$12 || (_templateObject2$12 = _taggedTemplateLiteral(["\n z-index: 99999;\n width: 16px;\n border: none;\n align-items: flex-start !important;\n padding: 0px !important;\n &:hover:not(:disabled):not(.button--disabled):not(:active) {\n background-color: transparent;\n border-color: transparent;\n }\n &:focus:not(:active) {\n box-shadow: none;\n }\n"])));
8447
+ var ModalHeader = styledComponents.styled.div(_templateObject3$M || (_templateObject3$M = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n padding: 24px 24px 0;\n"])));
8448
+ var ModalTitle = styledComponents.styled(Flex)(_templateObject4$x || (_templateObject4$x = _taggedTemplateLiteral(["\n align-items: center;\n flex: 1;\n"])));
8449
8449
  var Modal = function Modal(_ref4) {
8450
8450
  var title = _ref4.title,
8451
8451
  onDismiss = _ref4.onDismiss,
@@ -8487,7 +8487,7 @@ var Modal = function Modal(_ref4) {
8487
8487
  };
8488
8488
 
8489
8489
  var _templateObject$1Z;
8490
- var Overlay = styled.div.attrs({
8490
+ var Overlay = styledComponents.styled.div.attrs({
8491
8491
  role: "presentation"
8492
8492
  })(_templateObject$1Z || (_templateObject$1Z = _taggedTemplateLiteral(["\n position: fixed;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n background-color: rgb(22, 22, 29);\n transition: opacity 0.4s;\n opacity: ", ";\n z-index: ", ";\n pointer-events: ", ";\n"])), function (_ref) {
8493
8493
  var show = _ref.show;
@@ -8505,7 +8505,7 @@ Overlay.defaultProps = {
8505
8505
  };
8506
8506
 
8507
8507
  var _templateObject$1Y;
8508
- var ModalWrapper = styled.div(_templateObject$1Y || (_templateObject$1Y = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: ", ";\n ", " {\n justify-content: flex-start;\n padding-top: 50px;\n }\n"])), function (_ref) {
8508
+ var ModalWrapper = styledComponents.styled.div(_templateObject$1Y || (_templateObject$1Y = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: ", ";\n ", " {\n justify-content: flex-start;\n padding-top: 50px;\n }\n"])), function (_ref) {
8509
8509
  var theme = _ref.theme;
8510
8510
  return theme.zIndices.modal - 1;
8511
8511
  }, function (_ref2) {
@@ -8898,7 +8898,7 @@ var ConnectModal = function ConnectModal(_ref) {
8898
8898
 
8899
8899
  var _excluded$p = ["external"];
8900
8900
  var _templateObject$1X;
8901
- var StyledLink$1 = styled(Text)(_templateObject$1X || (_templateObject$1X = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n width: fit-content;\n margin-right: 21px;\n &:hover {\n text-decoration: underline;\n }\n"])));
8901
+ var StyledLink$1 = styledComponents.styled(Text)(_templateObject$1X || (_templateObject$1X = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n width: fit-content;\n margin-right: 21px;\n &:hover {\n text-decoration: underline;\n }\n"])));
8902
8902
  var Link = function Link(_ref) {
8903
8903
  var external = _ref.external,
8904
8904
  props = _objectWithoutProperties(_ref, _excluded$p);
@@ -8930,13 +8930,13 @@ var LinkExternal = function LinkExternal(_ref) {
8930
8930
 
8931
8931
  var _excluded$n = ["toCopy", "translations", "children"];
8932
8932
  var _templateObject$1W, _templateObject2$11;
8933
- var StyleButton = styled(Text).attrs({
8933
+ var StyleButton = styledComponents.styled(Text).attrs({
8934
8934
  role: "button"
8935
8935
  })(_templateObject$1W || (_templateObject$1W = _taggedTemplateLiteral(["\n position: relative;\n display: flex;\n align-items: center;\n color: ", ";\n"])), function (_ref) {
8936
8936
  var theme = _ref.theme;
8937
8937
  return theme.colors.primary;
8938
8938
  });
8939
- var Tooltip$1 = styled.div(_templateObject2$11 || (_templateObject2$11 = _taggedTemplateLiteral(["\n display: ", ";\n position: absolute;\n bottom: -40px;\n right: 0;\n left: 0;\n text-align: center;\n background-color: ", ";\n color: ", ";\n border-radius: 5px;\n opacity: 0.7;\n padding: 5px;\n"])), function (_ref2) {
8939
+ var Tooltip$1 = styledComponents.styled.div(_templateObject2$11 || (_templateObject2$11 = _taggedTemplateLiteral(["\n display: ", ";\n position: absolute;\n bottom: -40px;\n right: 0;\n left: 0;\n text-align: center;\n background-color: ", ";\n color: ", ";\n border-radius: 5px;\n opacity: 0.7;\n padding: 5px;\n"])), function (_ref2) {
8940
8940
  var isTooltipDisplayed = _ref2.isTooltipDisplayed;
8941
8941
  return isTooltipDisplayed ? "block" : "none";
8942
8942
  }, function (_ref3) {
@@ -9278,14 +9278,14 @@ var useConnectWalletEvent = function useConnectWalletEvent(account) {
9278
9278
  };
9279
9279
 
9280
9280
  var _templateObject$1V, _templateObject2$10;
9281
- var BannerSlideWrapper = styled.div(_templateObject$1V || (_templateObject$1V = _taggedTemplateLiteral(["\n position: relative;\n height: ", ";\n max-height: 225px;\n display: flex;\n flex-direction: row;\n justify-content: ", ";\n align-items: center;\n"])), function (_ref) {
9281
+ var BannerSlideWrapper = styledComponents.styled.div(_templateObject$1V || (_templateObject$1V = _taggedTemplateLiteral(["\n position: relative;\n height: ", ";\n max-height: 225px;\n display: flex;\n flex-direction: row;\n justify-content: ", ";\n align-items: center;\n"])), function (_ref) {
9282
9282
  var height = _ref.height;
9283
9283
  return "".concat(height, "px");
9284
9284
  }, function (_ref2) {
9285
9285
  var isMobile = _ref2.isMobile;
9286
9286
  return isMobile ? "flex-start" : "space-between";
9287
9287
  });
9288
- var StyledImg = styled(Image)(_templateObject2$10 || (_templateObject2$10 = _taggedTemplateLiteral(["\n position: absolute;\n max-height: 225px;\n top: 0;\n img {\n object-fit: contain;\n border-radius: ", ";\n }\n"])), function (_ref3) {
9288
+ var StyledImg = styledComponents.styled(Image)(_templateObject2$10 || (_templateObject2$10 = _taggedTemplateLiteral(["\n position: absolute;\n max-height: 225px;\n top: 0;\n img {\n object-fit: contain;\n border-radius: ", ";\n }\n"])), function (_ref3) {
9289
9289
  var isMobile = _ref3.isMobile,
9290
9290
  theme = _ref3.theme;
9291
9291
  return isMobile ? 0 : theme.radii.primary;
@@ -9323,11 +9323,11 @@ var BannerSlide = function BannerSlide(_ref4) {
9323
9323
  };
9324
9324
 
9325
9325
  var _templateObject$1U, _templateObject2$$;
9326
- var CarouselWrapper = styled.div(_templateObject$1U || (_templateObject$1U = _taggedTemplateLiteral(["\n margin: 0 -32px;\n\n ", " {\n margin: 0;\n }\n"])), function (_ref) {
9326
+ var CarouselWrapper = styledComponents.styled.div(_templateObject$1U || (_templateObject$1U = _taggedTemplateLiteral(["\n margin: 0 -32px;\n\n ", " {\n margin: 0;\n }\n"])), function (_ref) {
9327
9327
  var theme = _ref.theme;
9328
9328
  return theme.mediaQueries.sm;
9329
9329
  });
9330
- var StyledSlider$2 = styled(Slider)(_templateObject2$$ || (_templateObject2$$ = _taggedTemplateLiteral(["\n .slick-track {\n > div {\n padding: 0 10px;\n }\n }\n\n .slick-dots {\n .slick-active {\n div {\n background: ", " !important;\n border: 2px ", " solid;\n }\n }\n }\n"])), function (_ref2) {
9330
+ var StyledSlider$2 = styledComponents.styled(Slider)(_templateObject2$$ || (_templateObject2$$ = _taggedTemplateLiteral(["\n .slick-track {\n > div {\n padding: 0 10px;\n }\n }\n\n .slick-dots {\n .slick-active {\n div {\n background: ", " !important;\n border: 2px ", " solid;\n }\n }\n }\n"])), function (_ref2) {
9331
9331
  var theme = _ref2.theme;
9332
9332
  return theme.colors.blue;
9333
9333
  }, function (_ref3) {
@@ -9387,14 +9387,14 @@ var BannerSlider = function BannerSlider(_ref4) {
9387
9387
  };
9388
9388
 
9389
9389
  var _templateObject$1T, _templateObject2$_;
9390
- var Separator = styled.div(_templateObject$1T || (_templateObject$1T = _taggedTemplateLiteral(["\n align-items: center;\n color: currentColor;\n display: flex;\n justify-content: center;\n padding-left: 4px;\n padding-right: 4px;\n\n ", " {\n padding-left: 8px;\n padding-right: 8px;\n }\n\n ", " {\n padding-left: 16px;\n padding-right: 16px;\n }\n"])), function (_ref) {
9390
+ var Separator = styledComponents.styled.div(_templateObject$1T || (_templateObject$1T = _taggedTemplateLiteral(["\n align-items: center;\n color: currentColor;\n display: flex;\n justify-content: center;\n padding-left: 4px;\n padding-right: 4px;\n\n ", " {\n padding-left: 8px;\n padding-right: 8px;\n }\n\n ", " {\n padding-left: 16px;\n padding-right: 16px;\n }\n"])), function (_ref) {
9391
9391
  var theme = _ref.theme;
9392
9392
  return theme.mediaQueries.sm;
9393
9393
  }, function (_ref2) {
9394
9394
  var theme = _ref2.theme;
9395
9395
  return theme.mediaQueries.md;
9396
9396
  });
9397
- var StyledBreadcrumbs = styled.ul(_templateObject2$_ || (_templateObject2$_ = _taggedTemplateLiteral(["\n align-items: center;\n color: ", ";\n display: flex;\n flex-wrap: wrap;\n list-style-type: none;\n\n ", "\n"])), function (_ref3) {
9397
+ var StyledBreadcrumbs = styledComponents.styled.ul(_templateObject2$_ || (_templateObject2$_ = _taggedTemplateLiteral(["\n align-items: center;\n color: ", ";\n display: flex;\n flex-wrap: wrap;\n list-style-type: none;\n\n ", "\n"])), function (_ref3) {
9398
9398
  var theme = _ref3.theme;
9399
9399
  return theme.colors.textDisabled;
9400
9400
  }, styledSystem.space);
@@ -9431,7 +9431,7 @@ var Breadcrumbs = function Breadcrumbs(_ref4) {
9431
9431
  };
9432
9432
 
9433
9433
  var _templateObject$1S;
9434
- var StyledButtonMenu = styled.div(_templateObject$1S || (_templateObject$1S = _taggedTemplateLiteral(["\n background-color: transparent;\n border-radius: 16px;\n display: inline-flex;\n @media (max-width: 500px) {\n width: 100%;\n justify-content: space-around;\n }\n"])));
9434
+ var StyledButtonMenu = styledComponents.styled.div(_templateObject$1S || (_templateObject$1S = _taggedTemplateLiteral(["\n background-color: transparent;\n border-radius: 16px;\n display: inline-flex;\n @media (max-width: 500px) {\n width: 100%;\n justify-content: space-around;\n }\n"])));
9435
9435
 
9436
9436
  var ButtonMenu = function ButtonMenu(_ref) {
9437
9437
  var _ref$activeIndex = _ref.activeIndex,
@@ -9488,7 +9488,7 @@ var getButtonVariantProp$2 = function getButtonVariantProp(prop) {
9488
9488
  return theme.button[variant][prop];
9489
9489
  };
9490
9490
  };
9491
- var StyledButton$1 = styled.button(_templateObject$1R || (_templateObject$1R = _taggedTemplateLiteral(["\n align-items: center;\n background-color: transparent;\n border: none;\n border-radius: 10px;\n cursor: pointer;\n display: flex;\n flex-direction: column;\n font-family: inherit;\n font-size: 16px;\n font-weight: 700;\n color: white;\n /* max-content instead of auto for Safari fix */\n width: ", ";\n height: ", ";\n line-height: 1;\n letter-spacing: 0.03em;\n justify-content: center;\n outline: 0;\n padding: ", ";\n transition: all 0.5s;\n\n .dot {\n margin-top: 10px;\n height: ", ";\n width: ", ";\n border-radius: ", ";\n display: inline-block;\n background-color: ", ";\n }\n\n &:hover:not(:disabled):not(.button--disabled):not(:active) {\n border-color: ", ";\n color: ", ";\n }\n\n &:active {\n background-color: transparent;\n color: ", ";\n }\n\n ", "\n ", "\n ", "\n"])), function (_ref4) {
9491
+ var StyledButton$1 = styledComponents.styled.button(_templateObject$1R || (_templateObject$1R = _taggedTemplateLiteral(["\n align-items: center;\n background-color: transparent;\n border: none;\n border-radius: 10px;\n cursor: pointer;\n display: flex;\n flex-direction: column;\n font-family: inherit;\n font-size: 16px;\n font-weight: 700;\n color: white;\n /* max-content instead of auto for Safari fix */\n width: ", ";\n height: ", ";\n line-height: 1;\n letter-spacing: 0.03em;\n justify-content: center;\n outline: 0;\n padding: ", ";\n transition: all 0.5s;\n\n .dot {\n margin-top: 10px;\n height: ", ";\n width: ", ";\n border-radius: ", ";\n display: inline-block;\n background-color: ", ";\n }\n\n &:hover:not(:disabled):not(.button--disabled):not(:active) {\n border-color: ", ";\n color: ", ";\n }\n\n &:active {\n background-color: transparent;\n color: ", ";\n }\n\n ", "\n ", "\n ", "\n"])), function (_ref4) {
9492
9492
  var fullWidth = _ref4.fullWidth;
9493
9493
  return fullWidth ? "100%" : "max-content";
9494
9494
  }, function (_ref5) {
@@ -9568,7 +9568,7 @@ var getThemeTextColor = function getThemeTextColor(_ref) {
9568
9568
  theme = _ref.theme;
9569
9569
  return outline ? getColor(variant, theme) : "#ffffff";
9570
9570
  };
9571
- var StyledTag = styled.div(_templateObject$1Q || (_templateObject$1Q = _taggedTemplateLiteral(["\n align-items: center;\n background-color: ", ";\n border: 1px solid ", ";\n border-radius: 16px;\n color: ", ";\n display: inline-flex;\n font-size: 14px;\n font-weight: 400;\n height: 28px;\n line-height: 1.5;\n padding: 0 8px;\n white-space: nowrap;\n\n svg {\n fill: ", ";\n }\n"])), function (_ref2) {
9571
+ var StyledTag = styledComponents.styled.div(_templateObject$1Q || (_templateObject$1Q = _taggedTemplateLiteral(["\n align-items: center;\n background-color: ", ";\n border: 1px solid ", ";\n border-radius: 16px;\n color: ", ";\n display: inline-flex;\n font-size: 14px;\n font-weight: 400;\n height: 28px;\n line-height: 1.5;\n padding: 0 8px;\n white-space: nowrap;\n\n svg {\n fill: ", ";\n }\n"])), function (_ref2) {
9572
9572
  var outline = _ref2.outline,
9573
9573
  theme = _ref2.theme,
9574
9574
  _ref2$variant = _ref2.variant,
@@ -9583,9 +9583,9 @@ var StyledTag = styled.div(_templateObject$1Q || (_templateObject$1Q = _taggedTe
9583
9583
 
9584
9584
  var _excluded$l = ["isActive", "size", "variant", "as", "children", "tag", "hide"];
9585
9585
  var _templateObject$1P, _templateObject2$Z, _templateObject3$L;
9586
- var ButtonBody = styled.div(_templateObject$1P || (_templateObject$1P = _taggedTemplateLiteral(["\n display: inline-flex;\n align-items: center;\n"])));
9587
- var ButtonTag = styled(StyledTag)(_templateObject2$Z || (_templateObject2$Z = _taggedTemplateLiteral(["\n margin-left: 7px;\n font-weight: bold;\n font-size: 11px;\n padding: 1px 5px;\n height: unset;\n border-width: 1px;\n"])));
9588
- var InactiveButton$1 = styled(Button)(_templateObject3$L || (_templateObject3$L = _taggedTemplateLiteral(["\n background-color: transparent;\n color: #535459;\n .dot {\n background-color: transparent;\n }\n\n &:hover:not(:disabled):not(:active) {\n background-color: transparent;\n }\n"])));
9586
+ var ButtonBody = styledComponents.styled.div(_templateObject$1P || (_templateObject$1P = _taggedTemplateLiteral(["\n display: inline-flex;\n align-items: center;\n"])));
9587
+ var ButtonTag = styledComponents.styled(StyledTag)(_templateObject2$Z || (_templateObject2$Z = _taggedTemplateLiteral(["\n margin-left: 7px;\n font-weight: bold;\n font-size: 11px;\n padding: 1px 5px;\n height: unset;\n border-width: 1px;\n"])));
9588
+ var InactiveButton$1 = styledComponents.styled(Button)(_templateObject3$L || (_templateObject3$L = _taggedTemplateLiteral(["\n background-color: transparent;\n color: #535459;\n .dot {\n background-color: transparent;\n }\n\n &:hover:not(:disabled):not(:active) {\n background-color: transparent;\n }\n"])));
9589
9589
  var ButtonMenuItem = function ButtonMenuItem(_ref) {
9590
9590
  var _ref$isActive = _ref.isActive,
9591
9591
  isActive = _ref$isActive === void 0 ? false : _ref$isActive,
@@ -9634,7 +9634,7 @@ var ButtonMenuItem = function ButtonMenuItem(_ref) {
9634
9634
  };
9635
9635
 
9636
9636
  var _templateObject$1O;
9637
- var StyledButtonActivityMenu = styled.div(_templateObject$1O || (_templateObject$1O = _taggedTemplateLiteral(["\n background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 17.71%), #16161d;\n border: 1px solid #808080;\n box-sizing: border-box;\n border-radius: 99px;\n display: inline-flex;\n"])));
9637
+ var StyledButtonActivityMenu = styledComponents.styled.div(_templateObject$1O || (_templateObject$1O = _taggedTemplateLiteral(["\n background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 17.71%), #16161d;\n border: 1px solid #808080;\n box-sizing: border-box;\n border-radius: 99px;\n display: inline-flex;\n"])));
9638
9638
 
9639
9639
  var ButtonActivityMenu = function ButtonActivityMenu(_ref) {
9640
9640
  var _ref$activeIndex = _ref.activeIndex,
@@ -9685,7 +9685,7 @@ var getButtonVariantProp$1 = function getButtonVariantProp(prop) {
9685
9685
  return theme.button[variant][prop];
9686
9686
  };
9687
9687
  };
9688
- var StyledButtonActivity = styled.button(_templateObject$1N || (_templateObject$1N = _taggedTemplateLiteral(["\n align-items: center;\n border: none;\n cursor: pointer;\n display: flex;\n flex-direction: column;\n font-family: inherit;\n font-size: 16px;\n font-weight: 600;\n color: white;\n /* max-content instead of auto for Safari fix */\n width: ", ";\n height: ", ";\n line-height: 1;\n letter-spacing: 0.03em;\n justify-content: center;\n outline: 0;\n padding: ", ";\n transition: all 0.5s;\n\n // Activity\n border-radius: 99px;\n background: linear-gradient(332.11deg, #13c3af 8.45%, #13d8b2 39.11%, #12ffb8 85.67%);\n color: rgba(22, 22, 29, 1);\n\n &:hover:not(:disabled):not(.button--disabled):not(:active) {\n border-color: ", ";\n color: white;\n }\n\n ", "\n ", "\n ", "\n"])), function (_ref4) {
9688
+ var StyledButtonActivity = styledComponents.styled.button(_templateObject$1N || (_templateObject$1N = _taggedTemplateLiteral(["\n align-items: center;\n border: none;\n cursor: pointer;\n display: flex;\n flex-direction: column;\n font-family: inherit;\n font-size: 16px;\n font-weight: 600;\n color: white;\n /* max-content instead of auto for Safari fix */\n width: ", ";\n height: ", ";\n line-height: 1;\n letter-spacing: 0.03em;\n justify-content: center;\n outline: 0;\n padding: ", ";\n transition: all 0.5s;\n\n // Activity\n border-radius: 99px;\n background: linear-gradient(332.11deg, #13c3af 8.45%, #13d8b2 39.11%, #12ffb8 85.67%);\n color: rgba(22, 22, 29, 1);\n\n &:hover:not(:disabled):not(.button--disabled):not(:active) {\n border-color: ", ";\n color: white;\n }\n\n ", "\n ", "\n ", "\n"])), function (_ref4) {
9689
9689
  var fullWidth = _ref4.fullWidth;
9690
9690
  return fullWidth ? "100%" : "max-content";
9691
9691
  }, function (_ref5) {
@@ -9733,7 +9733,7 @@ ButtonActivity.defaultProps = {
9733
9733
 
9734
9734
  var _excluded$j = ["isActive", "size", "variant", "as"];
9735
9735
  var _templateObject$1M;
9736
- var InactiveButton = styled(ButtonActivity)(_templateObject$1M || (_templateObject$1M = _taggedTemplateLiteral(["\n background: transparent;\n color: #808080;\n &:hover:not(:disabled):not(:active) {\n background-color: transparent;\n }\n"])));
9736
+ var InactiveButton = styledComponents.styled(ButtonActivity)(_templateObject$1M || (_templateObject$1M = _taggedTemplateLiteral(["\n background: transparent;\n color: #808080;\n &:hover:not(:disabled):not(:active) {\n background-color: transparent;\n }\n"])));
9737
9737
  var ButtonActivityMenuItem = function ButtonActivityMenuItem(_ref) {
9738
9738
  var _ref$isActive = _ref.isActive,
9739
9739
  isActive = _ref$isActive === void 0 ? false : _ref$isActive,
@@ -9783,7 +9783,7 @@ var getButtonVariantProp = function getButtonVariantProp(prop) {
9783
9783
  return theme.button[variant][prop];
9784
9784
  };
9785
9785
  };
9786
- var StyledButtonSwitch = styled.button(_templateObject$1L || (_templateObject$1L = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n background-color: transparent;\n border: none;\n cursor: pointer;\n font-family: inherit;\n font-size: 16px;\n line-height: 28px;\n font-weight: 700;\n color: ", ";\n width: ", ";\n height: 36px;\n outline: 0;\n padding: 0 8px;\n transition: all 0.5s;\n\n &:hover:not(:disabled):not(.button--disabled):not(:active) {\n border-color: ", ";\n color: ", ";\n }\n\n ", "\n ", "\n ", "\n"])), function (_ref4) {
9786
+ var StyledButtonSwitch = styledComponents.styled.button(_templateObject$1L || (_templateObject$1L = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n background-color: transparent;\n border: none;\n cursor: pointer;\n font-family: inherit;\n font-size: 16px;\n line-height: 28px;\n font-weight: 700;\n color: ", ";\n width: ", ";\n height: 36px;\n outline: 0;\n padding: 0 8px;\n transition: all 0.5s;\n\n &:hover:not(:disabled):not(.button--disabled):not(:active) {\n border-color: ", ";\n color: ", ";\n }\n\n ", "\n ", "\n ", "\n"])), function (_ref4) {
9787
9787
  var theme = _ref4.theme,
9788
9788
  active = _ref4.active;
9789
9789
  return active ? "white" : theme.colors.grey;
@@ -9822,7 +9822,7 @@ var ButtonSwitch = function ButtonSwitch(_ref) {
9822
9822
  };
9823
9823
 
9824
9824
  var _templateObject$1K;
9825
- var StyledButtonSwitchMenu = styled.div(_templateObject$1K || (_templateObject$1K = _taggedTemplateLiteral(["\n background: transparent;\n box-sizing: border-box;\n display: inline-flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n"])));
9825
+ var StyledButtonSwitchMenu = styledComponents.styled.div(_templateObject$1K || (_templateObject$1K = _taggedTemplateLiteral(["\n background: transparent;\n box-sizing: border-box;\n display: inline-flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n"])));
9826
9826
 
9827
9827
  var variants$1 = {
9828
9828
  DEFAULT: "default",
@@ -9838,12 +9838,12 @@ var getToggleVariantProp = function getToggleVariantProp(prop) {
9838
9838
  return theme.toggle[variant][prop];
9839
9839
  };
9840
9840
  };
9841
- var Handle = styled.div(_templateObject$1J || (_templateObject$1J = _taggedTemplateLiteral(["\n background-color: ", ";\n border-radius: 50%;\n cursor: pointer;\n height: 16px;\n left: 3px;\n position: absolute;\n top: 2px;\n transition: all 200ms ease-in;\n width: 16px;\n z-index: 1;\n"])), function (_ref2) {
9841
+ var Handle = styledComponents.styled.div(_templateObject$1J || (_templateObject$1J = _taggedTemplateLiteral(["\n background-color: ", ";\n border-radius: 50%;\n cursor: pointer;\n height: 16px;\n left: 3px;\n position: absolute;\n top: 2px;\n transition: all 200ms ease-in;\n width: 16px;\n z-index: 1;\n"])), function (_ref2) {
9842
9842
  var checked = _ref2.checked;
9843
9843
  return checked ? getToggleVariantProp("backgroundHandleActive") : getToggleVariantProp("backgroundHandleInactive");
9844
9844
  });
9845
- var Input$1 = styled.input(_templateObject2$Y || (_templateObject2$Y = _taggedTemplateLiteral(["\n cursor: pointer;\n opacity: 0;\n height: 100%;\n position: absolute;\n width: 100%;\n z-index: 3;\n\n &:checked + ", " {\n left: calc(100% - 18px);\n }\n"])), Handle);
9846
- var StyledToggle = styled.div(_templateObject3$K || (_templateObject3$K = _taggedTemplateLiteral(["\n align-items: center;\n background: ", ";\n border: 1px solid ", ";\n border-radius: 11px;\n cursor: pointer;\n display: inline-flex;\n height: 22px;\n position: relative;\n transition: background-color 200ms;\n width: 42px;\n"])), function (_ref3) {
9845
+ var Input$1 = styledComponents.styled.input(_templateObject2$Y || (_templateObject2$Y = _taggedTemplateLiteral(["\n cursor: pointer;\n opacity: 0;\n height: 100%;\n position: absolute;\n width: 100%;\n z-index: 3;\n\n &:checked + ", " {\n left: calc(100% - 18px);\n }\n"])), Handle);
9846
+ var StyledToggle = styledComponents.styled.div(_templateObject3$K || (_templateObject3$K = _taggedTemplateLiteral(["\n align-items: center;\n background: ", ";\n border: 1px solid ", ";\n border-radius: 11px;\n cursor: pointer;\n display: inline-flex;\n height: 22px;\n position: relative;\n transition: background-color 200ms;\n width: 42px;\n"])), function (_ref3) {
9847
9847
  var checked = _ref3.checked;
9848
9848
  return checked ? getToggleVariantProp("backgroundToggleActive") : getToggleVariantProp("backgroundToggleInactive");
9849
9849
  }, getToggleVariantProp("borderColor"));
@@ -9944,7 +9944,7 @@ var getBoxShadow$2 = function getBoxShadow(_ref) {
9944
9944
  }
9945
9945
  return theme.card.boxShadow;
9946
9946
  };
9947
- var StyledCard = styled.div(_templateObject$1I || (_templateObject$1I = _taggedTemplateLiteral(["\n background: ", ";\n @-moz-document url-prefix() {\n background: rgba(36, 36, 36, 0.95) !important;\n }\n box-shadow: 0 13px 20px rgba(0, 0, 0, 0.25);\n border: 1px solid ", ";\n border-radius: 15px;\n box-shadow: ", ";\n color: ", ";\n overflow: hidden;\n position: relative;\n padding: 30px;\n\n ", "\n"])), function (_ref2) {
9947
+ var StyledCard = styledComponents.styled.div(_templateObject$1I || (_templateObject$1I = _taggedTemplateLiteral(["\n background: ", ";\n @-moz-document url-prefix() {\n background: rgba(36, 36, 36, 0.95) !important;\n }\n box-shadow: 0 13px 20px rgba(0, 0, 0, 0.25);\n border: 1px solid ", ";\n border-radius: 15px;\n box-shadow: ", ";\n color: ", ";\n overflow: hidden;\n position: relative;\n padding: 30px;\n\n ", "\n"])), function (_ref2) {
9948
9948
  var theme = _ref2.theme;
9949
9949
  return theme.colors.card;
9950
9950
  }, function (_ref3) {
@@ -9973,23 +9973,23 @@ var Card = function Card(_ref) {
9973
9973
  };
9974
9974
 
9975
9975
  var _templateObject$1H;
9976
- var CardBody = styled.div(_templateObject$1H || (_templateObject$1H = _taggedTemplateLiteral(["\n ", "\n display: flex;\n justify-content: center;\n"])), styledSystem.space);
9976
+ var CardBody = styledComponents.styled.div(_templateObject$1H || (_templateObject$1H = _taggedTemplateLiteral(["\n ", "\n display: flex;\n justify-content: center;\n"])), styledSystem.space);
9977
9977
  CardBody.defaultProps = {
9978
9978
  p: "24px"
9979
9979
  };
9980
9980
 
9981
9981
  var _templateObject$1G;
9982
- var CardHeader = styled.div(_templateObject$1G || (_templateObject$1G = _taggedTemplateLiteral(["\n ", "\n font-weight: 700;\n font-size: 26px;\n line-height: 130%;\n display: flex;\n width: 100%;\n justify-content: space-between;\n"])), styledSystem.space);
9982
+ var CardHeader = styledComponents.styled.div(_templateObject$1G || (_templateObject$1G = _taggedTemplateLiteral(["\n ", "\n font-weight: 700;\n font-size: 26px;\n line-height: 130%;\n display: flex;\n width: 100%;\n justify-content: space-between;\n"])), styledSystem.space);
9983
9983
  CardHeader.defaultProps = {};
9984
9984
 
9985
9985
  var _templateObject$1F;
9986
- var CardFooter = styled.div(_templateObject$1F || (_templateObject$1F = _taggedTemplateLiteral(["\n ", "\n display: flex;\n justify-content: center;\n"])), styledSystem.space);
9986
+ var CardFooter = styledComponents.styled.div(_templateObject$1F || (_templateObject$1F = _taggedTemplateLiteral(["\n ", "\n display: flex;\n justify-content: center;\n"])), styledSystem.space);
9987
9987
  CardFooter.defaultProps = {
9988
9988
  p: "24px"
9989
9989
  };
9990
9990
 
9991
9991
  var _templateObject$1E;
9992
- var StyledCardRibbon = styled.div(_templateObject$1E || (_templateObject$1E = _taggedTemplateLiteral(["\n background-color: ", ";\n color: white;\n margin: 0;\n padding: 0;\n padding: 8px 0;\n position: absolute;\n right: 0;\n top: 0;\n text-align: center;\n transform: translateX(30%) translateY(0%) rotate(45deg);\n transform-origin: top left;\n width: 96px;\n\n &:before,\n &:after {\n background-color: ", ";\n content: \"\";\n height: 100%;\n margin: 0 -1px; /* Removes tiny gap */\n position: absolute;\n top: 0;\n width: 100%;\n }\n\n &:before {\n right: 100%;\n }\n\n &:after {\n left: 100%;\n }\n\n & > div {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n width: 96px;\n }\n"])), function (_ref) {
9992
+ var StyledCardRibbon = styledComponents.styled.div(_templateObject$1E || (_templateObject$1E = _taggedTemplateLiteral(["\n background-color: ", ";\n color: white;\n margin: 0;\n padding: 0;\n padding: 8px 0;\n position: absolute;\n right: 0;\n top: 0;\n text-align: center;\n transform: translateX(30%) translateY(0%) rotate(45deg);\n transform-origin: top left;\n width: 96px;\n\n &:before,\n &:after {\n background-color: ", ";\n content: \"\";\n height: 100%;\n margin: 0 -1px; /* Removes tiny gap */\n position: absolute;\n top: 0;\n width: 100%;\n }\n\n &:before {\n right: 100%;\n }\n\n &:after {\n left: 100%;\n }\n\n & > div {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n width: 96px;\n }\n"])), function (_ref) {
9993
9993
  var _ref$variantColor = _ref.variantColor,
9994
9994
  variantColor = _ref$variantColor === void 0 ? "secondary" : _ref$variantColor,
9995
9995
  theme = _ref.theme;
@@ -10028,7 +10028,7 @@ var getScale$1 = function getScale(_ref) {
10028
10028
  return "32px";
10029
10029
  }
10030
10030
  };
10031
- var Checkbox = styled.input.attrs({
10031
+ var Checkbox = styledComponents.styled.input.attrs({
10032
10032
  type: "checkbox"
10033
10033
  })(_templateObject$1D || (_templateObject$1D = _taggedTemplateLiteral(["\n appearance: none;\n overflow: hidden;\n cursor: pointer;\n position: relative;\n display: inline-block;\n height: ", ";\n width: ", ";\n vertical-align: middle;\n transition: background-color 0.2s ease-in-out;\n border: ", ";\n border-radius: 8px;\n background-color: ", ";\n box-shadow: ", ";\n\n &:after {\n content: \"\";\n position: absolute;\n border-bottom: 2px solid;\n border-left: 2px solid;\n border-color: transparent;\n top: 30%;\n left: 0;\n right: 0;\n width: 50%;\n height: 25%;\n margin: auto;\n transform: rotate(-50deg);\n transition: border-color 0.2s ease-in-out;\n }\n\n &:hover:not(:disabled):not(:checked) {\n box-shadow: ", ";\n border: ", ";\n }\n\n &:focus {\n outline: none;\n box-shadow: ", ";\n }\n\n &:checked {\n background-color: ", ";\n border: ", ";\n &:after {\n border-color: white;\n }\n }\n\n &:disabled {\n cursor: default;\n opacity: 0.6;\n }\n"])), getScale$1, getScale$1, function (_ref2) {
10034
10034
  var bordered = _ref2.bordered;
@@ -10074,7 +10074,7 @@ var getBottom = function getBottom(_ref2) {
10074
10074
  }
10075
10075
  return "auto";
10076
10076
  };
10077
- var DropdownContent = styled.div(_templateObject$1C || (_templateObject$1C = _taggedTemplateLiteral(["\n width: max-content;\n display: none;\n flex-direction: column;\n position: absolute;\n transform: translate(-50%, 0);\n left: ", ";\n bottom: ", ";\n background-color: ", ";\n box-shadow: ", ";\n padding: 16px;\n max-height: 400px;\n overflow-y: auto;\n overflow-x: hidden;\n z-index: ", ";\n border-radius: ", ";\n"])), getLeft, getBottom, function (_ref3) {
10077
+ var DropdownContent = styledComponents.styled.div(_templateObject$1C || (_templateObject$1C = _taggedTemplateLiteral(["\n width: max-content;\n display: none;\n flex-direction: column;\n position: absolute;\n transform: translate(-50%, 0);\n left: ", ";\n bottom: ", ";\n background-color: ", ";\n box-shadow: ", ";\n padding: 16px;\n max-height: 400px;\n overflow-y: auto;\n overflow-x: hidden;\n z-index: ", ";\n border-radius: ", ";\n"])), getLeft, getBottom, function (_ref3) {
10078
10078
  var theme = _ref3.theme;
10079
10079
  return theme.nav.background;
10080
10080
  }, function (_ref4) {
@@ -10087,7 +10087,7 @@ var DropdownContent = styled.div(_templateObject$1C || (_templateObject$1C = _ta
10087
10087
  var theme = _ref6.theme;
10088
10088
  return theme.radii.small;
10089
10089
  });
10090
- var Container$7 = styled.div(_templateObject2$X || (_templateObject2$X = _taggedTemplateLiteral(["\n position: relative;\n &:hover ", ", &:focus-within ", " {\n display: flex;\n }\n"])), DropdownContent, DropdownContent);
10090
+ var Container$7 = styledComponents.styled.div(_templateObject2$X || (_templateObject2$X = _taggedTemplateLiteral(["\n position: relative;\n &:hover ", ", &:focus-within ", " {\n display: flex;\n }\n"])), DropdownContent, DropdownContent);
10091
10091
  var Dropdown = function Dropdown(_ref7) {
10092
10092
  var target = _ref7.target,
10093
10093
  _ref7$position = _ref7.position,
@@ -10106,8 +10106,8 @@ Dropdown.defaultProps = {
10106
10106
 
10107
10107
  var _excluded$e = ["tokenName", "amount", "tokenIcon", "actions"];
10108
10108
  var _templateObject$1B, _templateObject2$W, _templateObject3$J, _templateObject4$w, _templateObject5$t, _templateObject6$j, _templateObject7$f;
10109
- var StyledHeading = styled.div(_templateObject$1B || (_templateObject$1B = _taggedTemplateLiteral(["\n font-weight: 700;\n"])));
10110
- var StyledEarnedToken = styled.div(_templateObject2$W || (_templateObject2$W = _taggedTemplateLiteral(["\n width: 100%;\n background: ", ";\n border-radius: ", ";\n overflow: hidden;\n position: relative;\n padding: ", ";\n color: ", ";\n font-size: 16px;\n font-weight: 700;\n line-height: 28px;\n\n ", "\n\n ", " {\n padding: 15px;\n border: 1px solid ", ";\n font-size: 20px;\n line-height: 26px;\n }\n"])), function (_ref) {
10109
+ var StyledHeading = styledComponents.styled.div(_templateObject$1B || (_templateObject$1B = _taggedTemplateLiteral(["\n font-weight: 700;\n"])));
10110
+ var StyledEarnedToken = styledComponents.styled.div(_templateObject2$W || (_templateObject2$W = _taggedTemplateLiteral(["\n width: 100%;\n background: ", ";\n border-radius: ", ";\n overflow: hidden;\n position: relative;\n padding: ", ";\n color: ", ";\n font-size: 16px;\n font-weight: 700;\n line-height: 28px;\n\n ", "\n\n ", " {\n padding: 15px;\n border: 1px solid ", ";\n font-size: 20px;\n line-height: 26px;\n }\n"])), function (_ref) {
10111
10111
  var theme = _ref.theme;
10112
10112
  return theme.backgrounds.secondary;
10113
10113
  }, function (_ref2) {
@@ -10122,7 +10122,7 @@ var StyledEarnedToken = styled.div(_templateObject2$W || (_templateObject2$W = _
10122
10122
  return theme.colors.white;
10123
10123
  }, function (_ref5) {
10124
10124
  var toggled = _ref5.toggled;
10125
- return toggled && styled.css(_templateObject3$J || (_templateObject3$J = _taggedTemplateLiteral(["\n border: 1px solid ", ";\n "])), function (_ref6) {
10125
+ return toggled && styledComponents.css(_templateObject3$J || (_templateObject3$J = _taggedTemplateLiteral(["\n border: 1px solid ", ";\n "])), function (_ref6) {
10126
10126
  var theme = _ref6.theme;
10127
10127
  return theme.colors.white10;
10128
10128
  });
@@ -10133,19 +10133,19 @@ var StyledEarnedToken = styled.div(_templateObject2$W || (_templateObject2$W = _
10133
10133
  var theme = _ref8.theme;
10134
10134
  return theme.colors.white10;
10135
10135
  });
10136
- var Amount = styled.div(_templateObject4$w || (_templateObject4$w = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: flex-start;\n width: 100%;\n\n svg {\n width: 24px;\n height: 24px;\n margin-top: 5px;\n margin-right: 15px;\n\n ", " {\n margin-top: 0;\n margin-right: 8px;\n }\n }\n\n ", " {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n height: 24px;\n padding: 25px 0;\n }\n"])), function (_ref9) {
10136
+ var Amount = styledComponents.styled.div(_templateObject4$w || (_templateObject4$w = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: flex-start;\n width: 100%;\n\n svg {\n width: 24px;\n height: 24px;\n margin-top: 5px;\n margin-right: 15px;\n\n ", " {\n margin-top: 0;\n margin-right: 8px;\n }\n }\n\n ", " {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n height: 24px;\n padding: 25px 0;\n }\n"])), function (_ref9) {
10137
10137
  var theme = _ref9.theme;
10138
10138
  return theme.mediaQueries.sm;
10139
10139
  }, function (_ref0) {
10140
10140
  var theme = _ref0.theme;
10141
10141
  return theme.mediaQueries.sm;
10142
10142
  });
10143
- var Actions = styled.div(_templateObject5$t || (_templateObject5$t = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n width: 100%;\n\n button {\n width: 100%;\n height: 40px;\n font-size: 11px;\n padding: 0;\n }\n\n ", " {\n flex-direction: column;\n\n button {\n font-size: 16px;\n margin-bottom: 5px;\n }\n }\n"])), function (_ref1) {
10143
+ var Actions = styledComponents.styled.div(_templateObject5$t || (_templateObject5$t = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n width: 100%;\n\n button {\n width: 100%;\n height: 40px;\n font-size: 11px;\n padding: 0;\n }\n\n ", " {\n flex-direction: column;\n\n button {\n font-size: 16px;\n margin-bottom: 5px;\n }\n }\n"])), function (_ref1) {
10144
10144
  var theme = _ref1.theme;
10145
10145
  return theme.mediaQueries.sm;
10146
10146
  });
10147
- var MobileInfo = styled.div(_templateObject6$j || (_templateObject6$j = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n width: 80%;\n margin-bottom: 10px;\n"])));
10148
- var Toggle = styled.div(_templateObject7$f || (_templateObject7$f = _taggedTemplateLiteral(["\n justify-self: flex-end;\n\n svg {\n margin: 0;\n }\n"])));
10147
+ var MobileInfo = styledComponents.styled.div(_templateObject6$j || (_templateObject6$j = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n width: 80%;\n margin-bottom: 10px;\n"])));
10148
+ var Toggle = styledComponents.styled.div(_templateObject7$f || (_templateObject7$f = _taggedTemplateLiteral(["\n justify-self: flex-end;\n\n svg {\n margin: 0;\n }\n"])));
10149
10149
  var EarnedToken = function EarnedToken(_ref10) {
10150
10150
  var tokenName = _ref10.tokenName,
10151
10151
  amount = _ref10.amount,
@@ -10206,7 +10206,7 @@ exports.Tokens = void 0;
10206
10206
  })(exports.Tokens || (exports.Tokens = {}));
10207
10207
 
10208
10208
  var _templateObject$1A;
10209
- var StyledEarnedWrapper = styled.div(_templateObject$1A || (_templateObject$1A = _taggedTemplateLiteral(["\n border: 1px solid ", ";\n background: ", ";\n width: 100%;\n border-radius: ", ";\n color: ", ";\n overflow: hidden;\n position: relative;\n"])), function (_ref) {
10209
+ var StyledEarnedWrapper = styledComponents.styled.div(_templateObject$1A || (_templateObject$1A = _taggedTemplateLiteral(["\n border: 1px solid ", ";\n background: ", ";\n width: 100%;\n border-radius: ", ";\n color: ", ";\n overflow: hidden;\n position: relative;\n"])), function (_ref) {
10210
10210
  var theme = _ref.theme;
10211
10211
  return theme.colors.white7;
10212
10212
  }, function (_ref2) {
@@ -10230,7 +10230,7 @@ var EarnedWrapper = function EarnedWrapper(_ref) {
10230
10230
  };
10231
10231
 
10232
10232
  var _templateObject$1z;
10233
- var EarnedWrapperHeader = styled.div(_templateObject$1z || (_templateObject$1z = _taggedTemplateLiteral(["\n font-size: 20px;\n line-height: 26px;\n padding: 15px;\n font-weight: 700;\n color: ", ";\n display: flex;\n justify-content: flex-start;\n align-items: center;\n\n ", " {\n font-size: 26px;\n line-height: 33.8px;\n padding: 25px 10px 25px 30px;\n }\n"])), function (_ref) {
10233
+ var EarnedWrapperHeader = styledComponents.styled.div(_templateObject$1z || (_templateObject$1z = _taggedTemplateLiteral(["\n font-size: 20px;\n line-height: 26px;\n padding: 15px;\n font-weight: 700;\n color: ", ";\n display: flex;\n justify-content: flex-start;\n align-items: center;\n\n ", " {\n font-size: 26px;\n line-height: 33.8px;\n padding: 25px 10px 25px 30px;\n }\n"])), function (_ref) {
10234
10234
  var theme = _ref.theme;
10235
10235
  return theme.colors.white;
10236
10236
  }, function (_ref2) {
@@ -10242,7 +10242,7 @@ EarnedWrapperHeader.defaultProps = {
10242
10242
  };
10243
10243
 
10244
10244
  var _templateObject$1y;
10245
- var GridLayout$1 = styled.div(_templateObject$1y || (_templateObject$1y = _taggedTemplateLiteral(["\n display: grid;\n grid-template-columns: repeat(8, 1fr);\n grid-gap: 16px;\n ", " {\n grid-gap: 10px;\n }\n ", " {\n grid-template-columns: repeat(12, 1fr);\n grid-gap: 24px;\n }\n ", " {\n grid-template-columns: repeat(12, 1fr);\n grid-gap: 32px;\n }\n"])), function (_ref) {
10245
+ var GridLayout$1 = styledComponents.styled.div(_templateObject$1y || (_templateObject$1y = _taggedTemplateLiteral(["\n display: grid;\n grid-template-columns: repeat(8, 1fr);\n grid-gap: 16px;\n ", " {\n grid-gap: 10px;\n }\n ", " {\n grid-template-columns: repeat(12, 1fr);\n grid-gap: 24px;\n }\n ", " {\n grid-template-columns: repeat(12, 1fr);\n grid-gap: 32px;\n }\n"])), function (_ref) {
10246
10246
  var theme = _ref.theme;
10247
10247
  return theme.mediaQueries.sm;
10248
10248
  }, function (_ref2) {
@@ -10254,20 +10254,20 @@ var GridLayout$1 = styled.div(_templateObject$1y || (_templateObject$1y = _tagge
10254
10254
  });
10255
10255
 
10256
10256
  var _templateObject$1x;
10257
- var GridLayout = styled(GridLayout$1)(_templateObject$1x || (_templateObject$1x = _taggedTemplateLiteral(["\n & > div {\n grid-column: span 6;\n ", " {\n grid-column: span 4;\n }\n }\n"])), function (_ref) {
10257
+ var GridLayout = styledComponents.styled(GridLayout$1)(_templateObject$1x || (_templateObject$1x = _taggedTemplateLiteral(["\n & > div {\n grid-column: span 6;\n ", " {\n grid-column: span 4;\n }\n }\n"])), function (_ref) {
10258
10258
  var theme = _ref.theme;
10259
10259
  return theme.mediaQueries.sm;
10260
10260
  });
10261
10261
 
10262
10262
  var _templateObject$1w, _templateObject2$V, _templateObject3$I;
10263
- var StyledEarnedWrapperBody = styled.div(_templateObject$1w || (_templateObject$1w = _taggedTemplateLiteral(["\n width: 100%;\n display: flex;\n justify-content: flex-start;\n padding: 0 10px;\n\n ", " {\n padding: 0 30px;\n margin-bottom: ", " !important;\n }\n"])), function (_ref) {
10263
+ var StyledEarnedWrapperBody = styledComponents.styled.div(_templateObject$1w || (_templateObject$1w = _taggedTemplateLiteral(["\n width: 100%;\n display: flex;\n justify-content: flex-start;\n padding: 0 10px;\n\n ", " {\n padding: 0 30px;\n margin-bottom: ", " !important;\n }\n"])), function (_ref) {
10264
10264
  var theme = _ref.theme;
10265
10265
  return theme.mediaQueries.md;
10266
10266
  }, function (_ref2) {
10267
10267
  var withoutMore = _ref2.withoutMore;
10268
10268
  return withoutMore ? "30px" : "0px";
10269
10269
  });
10270
- var StyledCardsLayout = styled(GridLayout$1)(_templateObject2$V || (_templateObject2$V = _taggedTemplateLiteral(["\n width: 100%;\n\n & > div {\n grid-column: span 12;\n ", " {\n grid-column: span 4;\n }\n ", " {\n grid-column: span 4;\n }\n ", " {\n grid-column: span ", ";\n }\n }\n"])), function (_ref3) {
10270
+ var StyledCardsLayout = styledComponents.styled(GridLayout$1)(_templateObject2$V || (_templateObject2$V = _taggedTemplateLiteral(["\n width: 100%;\n\n & > div {\n grid-column: span 12;\n ", " {\n grid-column: span 4;\n }\n ", " {\n grid-column: span 4;\n }\n ", " {\n grid-column: span ", ";\n }\n }\n"])), function (_ref3) {
10271
10271
  var theme = _ref3.theme;
10272
10272
  return theme.mediaQueries.sm;
10273
10273
  }, function (_ref4) {
@@ -10280,7 +10280,7 @@ var StyledCardsLayout = styled(GridLayout$1)(_templateObject2$V || (_templateObj
10280
10280
  var childrenNumber = _ref6.childrenNumber;
10281
10281
  return childrenNumber === 3 ? "4" : "3";
10282
10282
  });
10283
- var EarnedWrapperFooter = styled.div(_templateObject3$I || (_templateObject3$I = _taggedTemplateLiteral(["\n display: flex;\n justify-content: center;\n align-items: center;\n padding: 10px 5px;\n\n ", " {\n padding: 20px 30px;\n }\n"])), function (_ref7) {
10283
+ var EarnedWrapperFooter = styledComponents.styled.div(_templateObject3$I || (_templateObject3$I = _taggedTemplateLiteral(["\n display: flex;\n justify-content: center;\n align-items: center;\n padding: 10px 5px;\n\n ", " {\n padding: 20px 30px;\n }\n"])), function (_ref7) {
10284
10284
  var theme = _ref7.theme;
10285
10285
  return theme.mediaQueries.md;
10286
10286
  });
@@ -10348,7 +10348,7 @@ var EarnedWrapperBody = function EarnedWrapperBody(_ref8) {
10348
10348
  };
10349
10349
 
10350
10350
  var _templateObject$1v;
10351
- var StyledEarnedCarouselWrapper = styled.div(_templateObject$1v || (_templateObject$1v = _taggedTemplateLiteral(["\n border: 1px solid ", ";\n background: ", ";\n width: 100%;\n border-radius: ", ";\n color: ", ";\n overflow: hidden;\n position: relative;\n padding-bottom: 10px;\n ", " {\n padding-bottom: 0px;\n }\n"])), function (_ref) {
10351
+ var StyledEarnedCarouselWrapper = styledComponents.styled.div(_templateObject$1v || (_templateObject$1v = _taggedTemplateLiteral(["\n border: 1px solid ", ";\n background: ", ";\n width: 100%;\n border-radius: ", ";\n color: ", ";\n overflow: hidden;\n position: relative;\n padding-bottom: 10px;\n ", " {\n padding-bottom: 0px;\n }\n"])), function (_ref) {
10352
10352
  var theme = _ref.theme;
10353
10353
  return theme.colors.white7;
10354
10354
  }, function (_ref2) {
@@ -10375,7 +10375,7 @@ var EarnedCarouselWrapper = function EarnedCarouselWrapper(_ref) {
10375
10375
  };
10376
10376
 
10377
10377
  var _templateObject$1u;
10378
- var EarnedCarouselWrapperHeader = styled.div(_templateObject$1u || (_templateObject$1u = _taggedTemplateLiteral(["\n font-size: 20px;\n line-height: 26px;\n padding: 15px;\n font-weight: 700;\n color: ", ";\n display: flex;\n justify-content: flex-start;\n align-items: center;\n\n ", " {\n font-size: 26px;\n line-height: 33.8px;\n padding: 25px 10px 25px 30px;\n }\n"])), function (_ref) {
10378
+ var EarnedCarouselWrapperHeader = styledComponents.styled.div(_templateObject$1u || (_templateObject$1u = _taggedTemplateLiteral(["\n font-size: 20px;\n line-height: 26px;\n padding: 15px;\n font-weight: 700;\n color: ", ";\n display: flex;\n justify-content: flex-start;\n align-items: center;\n\n ", " {\n font-size: 26px;\n line-height: 33.8px;\n padding: 25px 10px 25px 30px;\n }\n"])), function (_ref) {
10379
10379
  var theme = _ref.theme;
10380
10380
  return theme.colors.white;
10381
10381
  }, function (_ref2) {
@@ -10387,8 +10387,8 @@ EarnedCarouselWrapperHeader.defaultProps = {
10387
10387
  };
10388
10388
 
10389
10389
  var _templateObject$1t, _templateObject2$U, _templateObject3$H;
10390
- var CSSTokenWrapper = styled.div(_templateObject$1t || (_templateObject$1t = _taggedTemplateLiteral(["\n padding: 0 10px;\n\n @media (max-width: 800px) {\n width: 50%;\n }\n @media (min-width: 800px) {\n width: 33.3%;\n }\n @media (min-width: 1200px) {\n width: 25%;\n }\n"])));
10391
- var SliderWrapper = styled.div(_templateObject2$U || (_templateObject2$U = _taggedTemplateLiteral(["\n ", " {\n margin: ", ";\n }\n\n ", " {\n margin: ", ";\n }\n\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n"])), function (_ref) {
10390
+ var CSSTokenWrapper = styledComponents.styled.div(_templateObject$1t || (_templateObject$1t = _taggedTemplateLiteral(["\n padding: 0 10px;\n\n @media (max-width: 800px) {\n width: 50%;\n }\n @media (min-width: 800px) {\n width: 33.3%;\n }\n @media (min-width: 1200px) {\n width: 25%;\n }\n"])));
10391
+ var SliderWrapper = styledComponents.styled.div(_templateObject2$U || (_templateObject2$U = _taggedTemplateLiteral(["\n ", " {\n margin: ", ";\n }\n\n ", " {\n margin: ", ";\n }\n\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n"])), function (_ref) {
10392
10392
  var theme = _ref.theme;
10393
10393
  return theme.mediaQueries.sm;
10394
10394
  }, function (_ref2) {
@@ -10401,7 +10401,7 @@ var SliderWrapper = styled.div(_templateObject2$U || (_templateObject2$U = _tagg
10401
10401
  var dots = _ref4.dots;
10402
10402
  return dots ? "0 20px 60px" : "0 5px 15px";
10403
10403
  });
10404
- var StyledSlider$1 = styled(Slider)(_templateObject3$H || (_templateObject3$H = _taggedTemplateLiteral(["\n @media (max-width: 800px) {\n width: ", ";\n }\n @media (min-width: 800px) {\n width: ", ";\n }\n @media (min-width: 1200px) {\n width: ", ";\n }\n\n .slick-track {\n display: flex;\n > div {\n padding: 0 10px;\n }\n }\n\n .slick-dots {\n .slick-active {\n div {\n background: ", " !important;\n }\n }\n }\n"])), function (_ref5) {
10404
+ var StyledSlider$1 = styledComponents.styled(Slider)(_templateObject3$H || (_templateObject3$H = _taggedTemplateLiteral(["\n @media (max-width: 800px) {\n width: ", ";\n }\n @media (min-width: 800px) {\n width: ", ";\n }\n @media (min-width: 1200px) {\n width: ", ";\n }\n\n .slick-track {\n display: flex;\n > div {\n padding: 0 10px;\n }\n }\n\n .slick-dots {\n .slick-active {\n div {\n background: ", " !important;\n }\n }\n }\n"])), function (_ref5) {
10405
10405
  var withoutMain = _ref5.withoutMain;
10406
10406
  if (withoutMain) {
10407
10407
  return "100%";
@@ -10579,7 +10579,7 @@ var getBoxShadow$1 = function getBoxShadow(_ref) {
10579
10579
  }
10580
10580
  return theme.infoBox.boxShadow;
10581
10581
  };
10582
- var StyledInfoBox = styled.div(_templateObject$1s || (_templateObject$1s = _taggedTemplateLiteral(["\n filter: drop-shadow(rgba(25, 19, 38, 0.15) 0px 1px 4px);\n width: 100%;\n background: rgb(22, 22, 29);\n border: 1px solid rgb(82, 75, 99);\n border-radius: 15px;\n border: 1px solid ", ";\n box-shadow: ", ";\n color: ", ";\n overflow: hidden;\n position: relative;\n\n ", "\n"])), function (_ref2) {
10582
+ var StyledInfoBox = styledComponents.styled.div(_templateObject$1s || (_templateObject$1s = _taggedTemplateLiteral(["\n filter: drop-shadow(rgba(25, 19, 38, 0.15) 0px 1px 4px);\n width: 100%;\n background: rgb(22, 22, 29);\n border: 1px solid rgb(82, 75, 99);\n border-radius: 15px;\n border: 1px solid ", ";\n box-shadow: ", ";\n color: ", ";\n overflow: hidden;\n position: relative;\n\n ", "\n"])), function (_ref2) {
10583
10583
  var theme = _ref2.theme;
10584
10584
  return theme.colors.borderColor;
10585
10585
  }, getBoxShadow$1, function (_ref3) {
@@ -10601,17 +10601,17 @@ var InfoBox$1 = function InfoBox(_ref) {
10601
10601
  };
10602
10602
 
10603
10603
  var _templateObject$1r;
10604
- var InfoBox = styled.div(_templateObject$1r || (_templateObject$1r = _taggedTemplateLiteral(["\n ", ";\n padding: 20px;\n display: flex;\n justify-content: flex-start;\n"])), styledSystem.space);
10604
+ var InfoBox = styledComponents.styled.div(_templateObject$1r || (_templateObject$1r = _taggedTemplateLiteral(["\n ", ";\n padding: 20px;\n display: flex;\n justify-content: flex-start;\n"])), styledSystem.space);
10605
10605
  InfoBox.defaultProps = {
10606
10606
  p: "24px"
10607
10607
  };
10608
10608
 
10609
10609
  var _templateObject$1q;
10610
- var InfoBoxHeader = styled.div(_templateObject$1q || (_templateObject$1q = _taggedTemplateLiteral(["\n ", ";\n font-weight: 600;\n font-size: 24px;\n line-height: 130%;\n color: white;\n\n display: flex;\n height: 55px;\n padding: 0 20px;\n justify-content: space-between;\n align-items: center;\n background: rgba(10, 10, 10, 1);\n"])), styledSystem.space);
10610
+ var InfoBoxHeader = styledComponents.styled.div(_templateObject$1q || (_templateObject$1q = _taggedTemplateLiteral(["\n ", ";\n font-weight: 600;\n font-size: 24px;\n line-height: 130%;\n color: white;\n\n display: flex;\n height: 55px;\n padding: 0 20px;\n justify-content: space-between;\n align-items: center;\n background: rgba(10, 10, 10, 1);\n"])), styledSystem.space);
10611
10611
  InfoBoxHeader.defaultProps = {};
10612
10612
 
10613
10613
  var _templateObject$1p;
10614
- var InfoBoxFooter = styled.div(_templateObject$1p || (_templateObject$1p = _taggedTemplateLiteral(["\n ", ";\n padding: 20px;\n display: flex;\n justify-content: flex-start;\n"])), styledSystem.space);
10614
+ var InfoBoxFooter = styledComponents.styled.div(_templateObject$1p || (_templateObject$1p = _taggedTemplateLiteral(["\n ", ";\n padding: 20px;\n display: flex;\n justify-content: flex-start;\n"])), styledSystem.space);
10615
10615
  InfoBoxFooter.defaultProps = {
10616
10616
  p: "24px"
10617
10617
  };
@@ -10653,7 +10653,7 @@ var getHeight = function getHeight(_ref2) {
10653
10653
  return "40px";
10654
10654
  }
10655
10655
  };
10656
- var Input = styled.input(_templateObject$1o || (_templateObject$1o = _taggedTemplateLiteral(["\n background-color: ", ";\n border: 1px solid rgba(255, 255, 255, 0.3);\n border-radius: 10px;\n box-shadow: ", ";\n color: ", ";\n display: block;\n font-size: 16px;\n height: ", ";\n outline: 0;\n padding: 0 16px;\n width: 100%;\n\n &::placeholder {\n color: ", ";\n }\n\n &:disabled {\n background-color: ", ";\n box-shadow: none;\n color: ", ";\n cursor: not-allowed;\n }\n\n &:focus:not(:disabled) {\n box-shadow: ", ";\n }\n"])), function (_ref3) {
10656
+ var Input = styledComponents.styled.input(_templateObject$1o || (_templateObject$1o = _taggedTemplateLiteral(["\n background-color: ", ";\n border: 1px solid rgba(255, 255, 255, 0.3);\n border-radius: 10px;\n box-shadow: ", ";\n color: ", ";\n display: block;\n font-size: 16px;\n height: ", ";\n outline: 0;\n padding: 0 16px;\n width: 100%;\n\n &::placeholder {\n color: ", ";\n }\n\n &:disabled {\n background-color: ", ";\n box-shadow: none;\n color: ", ";\n cursor: not-allowed;\n }\n\n &:focus:not(:disabled) {\n box-shadow: ", ";\n }\n"])), function (_ref3) {
10657
10657
  var theme = _ref3.theme;
10658
10658
  return theme.colors.input;
10659
10659
  }, getBoxShadow, function (_ref4) {
@@ -10682,24 +10682,24 @@ var _excluded$9 = ["children"],
10682
10682
  _excluded2 = ["children"],
10683
10683
  _excluded3 = ["children"];
10684
10684
  var _templateObject$1n, _templateObject2$T, _templateObject3$G, _templateObject4$v, _templateObject5$s, _templateObject6$i, _templateObject7$e, _templateObject8$a, _templateObject9$9;
10685
- var InputLabelBox = styled.div(_templateObject$1n || (_templateObject$1n = _taggedTemplateLiteral(["\n display: flex;\n justify-content: space-between;\n margin-bottom: 8px;\n"])));
10686
- var Label = styled(Text)(_templateObject2$T || (_templateObject2$T = _taggedTemplateLiteral(["\n color: ", ";\n font-weight: bold;\n font-size: 16px;\n line-height: 28px;\n"])), function (_ref) {
10685
+ var InputLabelBox = styledComponents.styled.div(_templateObject$1n || (_templateObject$1n = _taggedTemplateLiteral(["\n display: flex;\n justify-content: space-between;\n margin-bottom: 8px;\n"])));
10686
+ var Label = styledComponents.styled(Text)(_templateObject2$T || (_templateObject2$T = _taggedTemplateLiteral(["\n color: ", ";\n font-weight: bold;\n font-size: 16px;\n line-height: 28px;\n"])), function (_ref) {
10687
10687
  var theme = _ref.theme;
10688
10688
  return theme.colors.white55;
10689
10689
  });
10690
- var OptionalBox = styled(Text)(_templateObject3$G || (_templateObject3$G = _taggedTemplateLiteral(["\n display: flex;\n justify-content: center;\n flex-direction: column;\n"])));
10691
- var Optional = styled(Text)(_templateObject4$v || (_templateObject4$v = _taggedTemplateLiteral(["\n color: #373749;\n font-weight: bold;\n font-size: 11px;\n line-height: 138.5%;\n"])));
10692
- var StyledInputDesc = styled(Text)(_templateObject5$s || (_templateObject5$s = _taggedTemplateLiteral(["\n color: ", ";\n font-weight: normal;\n font-size: 12px;\n line-height: 170%;\n"])), function (_ref2) {
10690
+ var OptionalBox = styledComponents.styled(Text)(_templateObject3$G || (_templateObject3$G = _taggedTemplateLiteral(["\n display: flex;\n justify-content: center;\n flex-direction: column;\n"])));
10691
+ var Optional = styledComponents.styled(Text)(_templateObject4$v || (_templateObject4$v = _taggedTemplateLiteral(["\n color: #373749;\n font-weight: bold;\n font-size: 11px;\n line-height: 138.5%;\n"])));
10692
+ var StyledInputDesc = styledComponents.styled(Text)(_templateObject5$s || (_templateObject5$s = _taggedTemplateLiteral(["\n color: ", ";\n font-weight: normal;\n font-size: 12px;\n line-height: 170%;\n"])), function (_ref2) {
10693
10693
  var theme = _ref2.theme;
10694
10694
  return theme.colors.white55;
10695
10695
  });
10696
- var StyledInputBottomDesc = styled(StyledInputDesc)(_templateObject6$i || (_templateObject6$i = _taggedTemplateLiteral(["\n padding-left: 8px;\n"])));
10697
- var textStyle = styled.css(_templateObject7$e || (_templateObject7$e = _taggedTemplateLiteral(["\n font-size: 11px;\n line-height: 138.5%;\n font-weight: bold;\n padding: 0px 0px 10px 24px;\n margin-bottom: -25px;\n"])));
10698
- var StyledErrorMessage = styled(Text)(_templateObject8$a || (_templateObject8$a = _taggedTemplateLiteral(["\n ", ";\n color: ", ";\n"])), textStyle, function (_ref3) {
10696
+ var StyledInputBottomDesc = styledComponents.styled(StyledInputDesc)(_templateObject6$i || (_templateObject6$i = _taggedTemplateLiteral(["\n padding-left: 8px;\n"])));
10697
+ var textStyle = styledComponents.css(_templateObject7$e || (_templateObject7$e = _taggedTemplateLiteral(["\n font-size: 11px;\n line-height: 138.5%;\n font-weight: bold;\n padding: 0px 0px 10px 24px;\n margin-bottom: -25px;\n"])));
10698
+ var StyledErrorMessage = styledComponents.styled(Text)(_templateObject8$a || (_templateObject8$a = _taggedTemplateLiteral(["\n ", ";\n color: ", ";\n"])), textStyle, function (_ref3) {
10699
10699
  var theme = _ref3.theme;
10700
10700
  return theme.colors.error;
10701
10701
  });
10702
- var StyledSuccessMessage = styled(Text)(_templateObject9$9 || (_templateObject9$9 = _taggedTemplateLiteral(["\n ", ";\n color: ", ";\n"])), textStyle, function (_ref4) {
10702
+ var StyledSuccessMessage = styledComponents.styled(Text)(_templateObject9$9 || (_templateObject9$9 = _taggedTemplateLiteral(["\n ", ";\n color: ", ";\n"])), textStyle, function (_ref4) {
10703
10703
  var theme = _ref4.theme;
10704
10704
  return theme.colors.primary;
10705
10705
  });
@@ -10767,7 +10767,7 @@ var InputWrapper$1 = function InputWrapper(_ref0) {
10767
10767
  };
10768
10768
 
10769
10769
  var _templateObject$1m, _templateObject2$S;
10770
- var StyledInput$1 = styled(function (_ref) {
10770
+ var StyledInput$1 = styledComponents.styled(function (_ref) {
10771
10771
  var props = _extends({}, (_objectDestructuringEmpty(_ref), _ref));
10772
10772
  return /*#__PURE__*/jsxRuntime.jsx(DatePicker.DatePicker, _objectSpread2({}, props));
10773
10773
  })(_templateObject$1m || (_templateObject$1m = _taggedTemplateLiteral(["\n width: 100%;\n height: 60px;\n .MuiInputBase-root {\n border: 1px solid\n ", ";\n border-radius: 10px;\n background: ", ";\n padding: 16px 24px;\n color: white;\n font-weight: 500;\n font-size: 16px;\n line-height: 28px;\n &.Mui-disabled {\n .MuiInputBase-input {\n color: ", ";\n }\n }\n }\n .MuiFormHelperText-root.Mui-error {\n display: none;\n }\n"])), function (props) {
@@ -10778,7 +10778,7 @@ var StyledInput$1 = styled(function (_ref) {
10778
10778
  var theme = _ref2.theme;
10779
10779
  return theme.colors.white55;
10780
10780
  });
10781
- var DateInputWrapper = styled(function (_ref3) {
10781
+ var DateInputWrapper = styledComponents.styled(function (_ref3) {
10782
10782
  var props = _extends({}, (_objectDestructuringEmpty(_ref3), _ref3));
10783
10783
  return /*#__PURE__*/jsxRuntime.jsx("div", _objectSpread2({}, props));
10784
10784
  })(_templateObject2$S || (_templateObject2$S = _taggedTemplateLiteral(["\n margin-bottom: 15px;\n"])));
@@ -10795,7 +10795,7 @@ var MuiDateInput = function MuiDateInput(_ref4) {
10795
10795
  error = _ref4.error,
10796
10796
  _ref4$disabled = _ref4.disabled,
10797
10797
  disabled = _ref4$disabled === void 0 ? false : _ref4$disabled;
10798
- var theme = styled.useTheme();
10798
+ var theme = styledComponents.useTheme();
10799
10799
  var defaultMaterialTheme = styles.createTheme({
10800
10800
  palette: {
10801
10801
  primary: {
@@ -10846,7 +10846,7 @@ var MuiDateInput = function MuiDateInput(_ref4) {
10846
10846
  };
10847
10847
 
10848
10848
  var _templateObject$1l, _templateObject2$R;
10849
- var DragAndDropZone = styled(function (_ref) {
10849
+ var DragAndDropZone = styledComponents.styled(function (_ref) {
10850
10850
  var props = _extends({}, (_objectDestructuringEmpty(_ref), _ref));
10851
10851
  return /*#__PURE__*/jsxRuntime.jsx("div", _objectSpread2({}, props));
10852
10852
  })(_templateObject$1l || (_templateObject$1l = _taggedTemplateLiteral(["\n background: ", ";\n cursor: ", ";\n border: 1px\n ", ";\n box-sizing: border-box;\n border-radius: 10px;\n padding: 16px 24px;\n font-weight: 500;\n font-size: 16px;\n line-height: 28px;\n display: flex;\n justify-content: space-between;\n align-items: center;\n margin-bottom: 10px;\n"])), function (props) {
@@ -10856,7 +10856,7 @@ var DragAndDropZone = styled(function (_ref) {
10856
10856
  }, function (props) {
10857
10857
  return props.disabled ? "solid ".concat(props.theme.colors.white55) : props.error ? "solid ".concat(props.theme.colors.error) : props.value.length > 0 ? "solid ".concat(props.theme.colors.white55) : "dashed rgba(255, 255, 255, 0.03)";
10858
10858
  });
10859
- var DragAndDropText = styled(function (_ref2) {
10859
+ var DragAndDropText = styledComponents.styled(function (_ref2) {
10860
10860
  var props = _extends({}, (_objectDestructuringEmpty(_ref2), _ref2));
10861
10861
  return /*#__PURE__*/jsxRuntime.jsx(Text, _objectSpread2({}, props));
10862
10862
  })(_templateObject2$R || (_templateObject2$R = _taggedTemplateLiteral(["\n font-weight: 500;\n font-size: 16px;\n line-height: 28px;\n color: ", ";\n span {\n color: ", ";\n }\n"])), function (props) {
@@ -10934,12 +10934,12 @@ var MuiFileInput = function MuiFileInput(_ref3) {
10934
10934
 
10935
10935
  var _excluded$8 = ["name", "label", "placeholderLabel", "placeholder", "topDesc", "bottomDesc", "optional", "value", "onChange", "onBlur", "error", "textarea", "maxLength", "disabled", "success", "successMsg"];
10936
10936
  var _templateObject$1k, _templateObject2$Q, _templateObject3$F;
10937
- var TextAreaWrapper = styled.div(_templateObject$1k || (_templateObject$1k = _taggedTemplateLiteral(["\n position: relative;\n"])));
10938
- var LengthText = styled(Text)(_templateObject2$Q || (_templateObject2$Q = _taggedTemplateLiteral(["\n position: absolute;\n font-weight: bold;\n font-size: 11px;\n line-height: 138.5%;\n color: ", ";\n bottom: 20px;\n right: 15px;\n"])), function (_ref) {
10937
+ var TextAreaWrapper = styledComponents.styled.div(_templateObject$1k || (_templateObject$1k = _taggedTemplateLiteral(["\n position: relative;\n"])));
10938
+ var LengthText = styledComponents.styled(Text)(_templateObject2$Q || (_templateObject2$Q = _taggedTemplateLiteral(["\n position: absolute;\n font-weight: bold;\n font-size: 11px;\n line-height: 138.5%;\n color: ", ";\n bottom: 20px;\n right: 15px;\n"])), function (_ref) {
10939
10939
  var theme = _ref.theme;
10940
10940
  return theme.colors.grey;
10941
10941
  });
10942
- var StyledTextField = styled(material.TextField)(_templateObject3$F || (_templateObject3$F = _taggedTemplateLiteral(["\n &.MuiTextField-root {\n margin-bottom: 10px;\n width: 100%;\n .MuiInputBase-input {\n color: white;\n ::placeholder {\n opacity: 1;\n color: ", ";\n }\n }\n .MuiFilledInput-root {\n background-color: ", ";\n border: 1px solid ", ";\n border-radius: 10px;\n height: ", ";\n .MuiFilledInput-input {\n padding: ", ";\n }\n &.Mui-error {\n border: 1px solid ", ";\n }\n &.Mui-focused {\n border: 1px solid ", ";\n box-shadow: 0px 0px 8px rgba(18, 255, 184, 0.15);\n &.Mui-error {\n border: 1px solid ", ";\n box-shadow: unset;\n }\n }\n &.Mui-disabled {\n background-color: ", ";\n border: 1px solid ", ";\n .MuiInputBase-input {\n color: ", ";\n }\n }\n &.MuiFilledInput-underline:before {\n border-bottom: unset;\n }\n &.MuiFilledInput-underline:after {\n border-bottom: unset;\n }\n }\n .MuiInputLabel-filled {\n font-weight: 500;\n font-size: 16px;\n line-height: 28px;\n transform: translate(24px, 17px);\n color: ", ";\n transition: all 0.15s;\n &.MuiInputLabel-shrink {\n font-weight: bold;\n font-size: 11px;\n line-height: 138.5%;\n transform: translate(24px, 10px);\n color: ", ";\n }\n }\n }\n .MuiFilledInput-multiline {\n padding: 0px 12px 30px 0px;\n }\n"])), function (_ref2) {
10942
+ var StyledTextField = styledComponents.styled(material.TextField)(_templateObject3$F || (_templateObject3$F = _taggedTemplateLiteral(["\n &.MuiTextField-root {\n margin-bottom: 10px;\n width: 100%;\n .MuiInputBase-input {\n color: white;\n ::placeholder {\n opacity: 1;\n color: ", ";\n }\n }\n .MuiFilledInput-root {\n background-color: ", ";\n border: 1px solid ", ";\n border-radius: 10px;\n height: ", ";\n .MuiFilledInput-input {\n padding: ", ";\n }\n &.Mui-error {\n border: 1px solid ", ";\n }\n &.Mui-focused {\n border: 1px solid ", ";\n box-shadow: 0px 0px 8px rgba(18, 255, 184, 0.15);\n &.Mui-error {\n border: 1px solid ", ";\n box-shadow: unset;\n }\n }\n &.Mui-disabled {\n background-color: ", ";\n border: 1px solid ", ";\n .MuiInputBase-input {\n color: ", ";\n }\n }\n &.MuiFilledInput-underline:before {\n border-bottom: unset;\n }\n &.MuiFilledInput-underline:after {\n border-bottom: unset;\n }\n }\n .MuiInputLabel-filled {\n font-weight: 500;\n font-size: 16px;\n line-height: 28px;\n transform: translate(24px, 17px);\n color: ", ";\n transition: all 0.15s;\n &.MuiInputLabel-shrink {\n font-weight: bold;\n font-size: 11px;\n line-height: 138.5%;\n transform: translate(24px, 10px);\n color: ", ";\n }\n }\n }\n .MuiFilledInput-multiline {\n padding: 0px 12px 30px 0px;\n }\n"])), function (_ref2) {
10943
10943
  var theme = _ref2.theme,
10944
10944
  disabled = _ref2.disabled;
10945
10945
  return disabled ? theme.colors.white55 : theme.colors.grey;
@@ -10999,7 +10999,7 @@ var MuiTextInput = function MuiTextInput(_ref11) {
10999
10999
  success = _ref11.success,
11000
11000
  successMsg = _ref11.successMsg,
11001
11001
  props = _objectWithoutProperties(_ref11, _excluded$8);
11002
- var theme = styled.useTheme();
11002
+ var theme = styledComponents.useTheme();
11003
11003
  var _useState = React.useState(value ? value.length : 0),
11004
11004
  _useState2 = _slicedToArray(_useState, 2),
11005
11005
  textLength = _useState2[0],
@@ -11048,12 +11048,12 @@ var MuiTextInput = function MuiTextInput(_ref11) {
11048
11048
  };
11049
11049
 
11050
11050
  var _templateObject$1j, _templateObject2$P, _templateObject3$E;
11051
- var CarouselBox = styled.div(_templateObject$1j || (_templateObject$1j = _taggedTemplateLiteral(["\n height: 200px;\n"])));
11052
- var StyledSlider = styled(Slider)(_templateObject2$P || (_templateObject2$P = _taggedTemplateLiteral(["\n .slick-track {\n > div {\n padding: 0 10px;\n }\n }\n\n .slick-dots {\n .slick-active {\n div {\n background: ", " !important;\n }\n }\n }\n"])), function (_ref) {
11051
+ var CarouselBox = styledComponents.styled.div(_templateObject$1j || (_templateObject$1j = _taggedTemplateLiteral(["\n height: 200px;\n"])));
11052
+ var StyledSlider = styledComponents.styled(Slider)(_templateObject2$P || (_templateObject2$P = _taggedTemplateLiteral(["\n .slick-track {\n > div {\n padding: 0 10px;\n }\n }\n\n .slick-dots {\n .slick-active {\n div {\n background: ", " !important;\n }\n }\n }\n"])), function (_ref) {
11053
11053
  var theme = _ref.theme;
11054
11054
  return theme.colors.blue;
11055
11055
  });
11056
- var ImageDiv = styled.div(_templateObject3$E || (_templateObject3$E = _taggedTemplateLiteral(["\n background: ", ";\n background-size: cover;\n color: white;\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: flex-end;\n padding-bottom: 30px;\n height: 200px;\n border-radius: 15px;\n border: 1px solid ", ";\n"])), function (_ref2) {
11056
+ var ImageDiv = styledComponents.styled.div(_templateObject3$E || (_templateObject3$E = _taggedTemplateLiteral(["\n background: ", ";\n background-size: cover;\n color: white;\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: flex-end;\n padding-bottom: 30px;\n height: 200px;\n border-radius: 15px;\n border: 1px solid ", ";\n"])), function (_ref2) {
11057
11057
  var background = _ref2.background;
11058
11058
  return background;
11059
11059
  }, function (_ref3) {
@@ -11123,7 +11123,7 @@ var getCheckedScale = function getCheckedScale(_ref2) {
11123
11123
  return "20px";
11124
11124
  }
11125
11125
  };
11126
- var Radio = styled.input.attrs({
11126
+ var Radio = styledComponents.styled.input.attrs({
11127
11127
  type: "radio"
11128
11128
  })(_templateObject$1i || (_templateObject$1i = _taggedTemplateLiteral(["\n appearance: none;\n overflow: hidden;\n cursor: pointer;\n position: relative;\n display: inline-block;\n height: ", ";\n width: ", ";\n vertical-align: middle;\n transition: background-color 0.2s ease-in-out;\n border: 0;\n border-radius: 50%;\n background-color: ", ";\n box-shadow: ", ";\n\n &:after {\n border-radius: 50%;\n content: \"\";\n height: ", ";\n left: 6px;\n position: absolute;\n top: 6px;\n width: ", ";\n }\n\n &:hover:not(:disabled):not(:checked) {\n box-shadow: ", ";\n }\n\n &:focus {\n outline: none;\n box-shadow: ", ";\n }\n\n &:checked {\n background-color: ", ";\n &:after {\n background-color: ", ";\n }\n }\n\n &:disabled {\n cursor: default;\n opacity: 0.6;\n }\n ", "\n"])), getScale, getScale, function (_ref3) {
11129
11129
  var theme = _ref3.theme;
@@ -11266,7 +11266,7 @@ var darkColors = _objectSpread2(_objectSpread2(_objectSpread2({}, baseColors), b
11266
11266
  });
11267
11267
 
11268
11268
  var _templateObject$1h, _templateObject2$O;
11269
- var StyledCoreTag = styled.div(_templateObject$1h || (_templateObject$1h = _taggedTemplateLiteral(["\n width: auto;\n height: 24px;\n display: inline-flex;\n justify-content: space-between;\n align-items: center;\n background-color: transparent;\n border: 1px solid ", ";\n border-radius: ", ";\n color: ", ";\n font-size: 14px;\n font-weight: 700;\n line-height: 1.5;\n padding: 0 8px;\n white-space: nowrap;\n\n svg {\n margin-left: ", "px;\n margin-right: ", "px;\n width: 16px;\n height: 16px;\n fill: ", ";\n }\n"])), function (_ref) {
11269
+ var StyledCoreTag = styledComponents.styled.div(_templateObject$1h || (_templateObject$1h = _taggedTemplateLiteral(["\n width: auto;\n height: 24px;\n display: inline-flex;\n justify-content: space-between;\n align-items: center;\n background-color: transparent;\n border: 1px solid ", ";\n border-radius: ", ";\n color: ", ";\n font-size: 14px;\n font-weight: 700;\n line-height: 1.5;\n padding: 0 8px;\n white-space: nowrap;\n\n svg {\n margin-left: ", "px;\n margin-right: ", "px;\n width: 16px;\n height: 16px;\n fill: ", ";\n }\n"])), function (_ref) {
11270
11270
  var theme = _ref.theme,
11271
11271
  active = _ref.active,
11272
11272
  color = _ref.color;
@@ -11290,7 +11290,7 @@ var StyledCoreTag = styled.div(_templateObject$1h || (_templateObject$1h = _tagg
11290
11290
  active = _ref6.active;
11291
11291
  return active ? theme.colors.primary : theme.colors.grey;
11292
11292
  });
11293
- var StyledText = styled(Text)(_templateObject2$O || (_templateObject2$O = _taggedTemplateLiteral(["\n font-weight: 700;\n color: ", ";\n font-size: 14px;\n line-height: 20px;\n"])), function (_ref7) {
11293
+ var StyledText = styledComponents.styled(Text)(_templateObject2$O || (_templateObject2$O = _taggedTemplateLiteral(["\n font-weight: 700;\n color: ", ";\n font-size: 14px;\n line-height: 20px;\n"])), function (_ref7) {
11294
11294
  var theme = _ref7.theme,
11295
11295
  active = _ref7.active,
11296
11296
  color = _ref7.color;
@@ -11339,7 +11339,7 @@ var CoreTag = function CoreTag(_ref8) {
11339
11339
  active = _ref8$active === void 0 ? true : _ref8$active,
11340
11340
  variant = _ref8.variant,
11341
11341
  plainIcon = _ref8.plainIcon;
11342
- var theme = styled.useTheme();
11342
+ var theme = styledComponents.useTheme();
11343
11343
  var _getTagPropsByVariant = getTagPropsByVariant(variant, active, theme),
11344
11344
  color = _getTagPropsByVariant.color,
11345
11345
  icon = _getTagPropsByVariant.icon;
@@ -11379,15 +11379,15 @@ var Icon$M = function Icon(props) {
11379
11379
  };
11380
11380
 
11381
11381
  var _templateObject$1g, _templateObject2$N, _templateObject3$D;
11382
- var rotate = styled.keyframes(_templateObject$1g || (_templateObject$1g = _taggedTemplateLiteral(["\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n"])));
11383
- var Container$6 = styled.div(_templateObject2$N || (_templateObject2$N = _taggedTemplateLiteral(["\n position: relative;\n height: ", "px;\n width: ", "px;\n"])), function (_ref) {
11382
+ var rotate = styledComponents.keyframes(_templateObject$1g || (_templateObject$1g = _taggedTemplateLiteral(["\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n"])));
11383
+ var Container$6 = styledComponents.styled.div(_templateObject2$N || (_templateObject2$N = _taggedTemplateLiteral(["\n position: relative;\n height: ", "px;\n width: ", "px;\n"])), function (_ref) {
11384
11384
  var size = _ref.size;
11385
11385
  return size;
11386
11386
  }, function (_ref2) {
11387
11387
  var size = _ref2.size;
11388
11388
  return size;
11389
11389
  });
11390
- var RotatingSpinnerIcon = styled(Icon$M)(_templateObject3$D || (_templateObject3$D = _taggedTemplateLiteral(["\n position: absolute;\n top: 0;\n left: 0;\n animation: ", " 2s linear infinite;\n transform: translate3d(0, 0, 0);\n"])), rotate);
11390
+ var RotatingSpinnerIcon = styledComponents.styled(Icon$M)(_templateObject3$D || (_templateObject3$D = _taggedTemplateLiteral(["\n position: absolute;\n top: 0;\n left: 0;\n animation: ", " 2s linear infinite;\n transform: translate3d(0, 0, 0);\n"])), rotate);
11391
11391
  var Spinner = function Spinner(_ref3) {
11392
11392
  var _ref3$size = _ref3.size,
11393
11393
  size = _ref3$size === void 0 ? 128 : _ref3$size;
@@ -11400,13 +11400,13 @@ var Spinner = function Spinner(_ref3) {
11400
11400
  };
11401
11401
 
11402
11402
  var _templateObject$1f, _templateObject2$M, _templateObject3$C, _templateObject4$u;
11403
- var StyledContainer = styled.div(_templateObject$1f || (_templateObject$1f = _taggedTemplateLiteral(["\n width: 100%;\n height: 100%;\n overflow: auto;\n ", "\n"])), function (_ref) {
11403
+ var StyledContainer = styledComponents.styled.div(_templateObject$1f || (_templateObject$1f = _taggedTemplateLiteral(["\n width: 100%;\n height: 100%;\n overflow: auto;\n ", "\n"])), function (_ref) {
11404
11404
  var loader = _ref.loader;
11405
11405
  return loader && "\n display: flex;\n justify-content: center;\n align-items: center;\n ";
11406
11406
  });
11407
- var StyledItem = styled.div(_templateObject2$M || (_templateObject2$M = _taggedTemplateLiteral(["\n display: flex;\n justify-content: space-between;\n align-items: center;\n border-bottom: 1px solid rgba(55, 55, 73, 0.3);\n padding-top: 8px;\n padding-bottom: 8px;\n"])));
11408
- var StyledLabel = styled(Text)(_templateObject3$C || (_templateObject3$C = _taggedTemplateLiteral(["\n opacity: 0.55;\n"])));
11409
- var ListWrapper = styled.div(_templateObject4$u || (_templateObject4$u = _taggedTemplateLiteral(["\n display: flex;\n height: ", ";\n"])), function (_ref2) {
11407
+ var StyledItem = styledComponents.styled.div(_templateObject2$M || (_templateObject2$M = _taggedTemplateLiteral(["\n display: flex;\n justify-content: space-between;\n align-items: center;\n border-bottom: 1px solid rgba(55, 55, 73, 0.3);\n padding-top: 8px;\n padding-bottom: 8px;\n"])));
11408
+ var StyledLabel = styledComponents.styled(Text)(_templateObject3$C || (_templateObject3$C = _taggedTemplateLiteral(["\n opacity: 0.55;\n"])));
11409
+ var ListWrapper = styledComponents.styled.div(_templateObject4$u || (_templateObject4$u = _taggedTemplateLiteral(["\n display: flex;\n height: ", ";\n"])), function (_ref2) {
11410
11410
  var customHeight = _ref2.customHeight;
11411
11411
  return customHeight ? "".concat(customHeight, "px") : "100%";
11412
11412
  });
@@ -11470,13 +11470,13 @@ var List = function List(_ref3) {
11470
11470
  };
11471
11471
 
11472
11472
  var _templateObject$1e, _templateObject2$L;
11473
- var Bar = styled.div(_templateObject$1e || (_templateObject$1e = _taggedTemplateLiteral(["\n position: absolute;\n top: 0;\n left: 0;\n background-color: ", ";\n border-top-left-radius: 32px;\n border-bottom-left-radius: 32px;\n height: 16px;\n transition: width 200ms ease;\n"])), function (props) {
11473
+ var Bar = styledComponents.styled.div(_templateObject$1e || (_templateObject$1e = _taggedTemplateLiteral(["\n position: absolute;\n top: 0;\n left: 0;\n background-color: ", ";\n border-top-left-radius: 32px;\n border-bottom-left-radius: 32px;\n height: 16px;\n transition: width 200ms ease;\n"])), function (props) {
11474
11474
  return props.primary ? props.theme.colors.secondary : "".concat(props.theme.colors.secondary, "80");
11475
11475
  });
11476
11476
  Bar.defaultProps = {
11477
11477
  primary: false
11478
11478
  };
11479
- var StyledProgress = styled.div(_templateObject2$L || (_templateObject2$L = _taggedTemplateLiteral(["\n position: relative;\n background-color: ", ";\n border-radius: 32px;\n box-shadow: ", ";\n height: 16px;\n overflow: hidden;\n"])), function (_ref) {
11479
+ var StyledProgress = styledComponents.styled.div(_templateObject2$L || (_templateObject2$L = _taggedTemplateLiteral(["\n position: relative;\n background-color: ", ";\n border-radius: 32px;\n box-shadow: ", ";\n height: 16px;\n overflow: hidden;\n"])), function (_ref) {
11480
11480
  var theme = _ref.theme;
11481
11481
  return theme.colors.input;
11482
11482
  }, function (_ref2) {
@@ -11485,7 +11485,7 @@ var StyledProgress = styled.div(_templateObject2$L || (_templateObject2$L = _tag
11485
11485
  });
11486
11486
 
11487
11487
  var _templateObject$1d;
11488
- var ProgressBunnyWrapper = styled.div(_templateObject$1d || (_templateObject$1d = _taggedTemplateLiteral(["\n display: flex;\n z-index: 2;\n top: -65%;\n position: absolute;\n transform: translate(-50%, -50%);\n transition: left 200ms ease-out;\n"])));
11488
+ var ProgressBunnyWrapper = styledComponents.styled.div(_templateObject$1d || (_templateObject$1d = _taggedTemplateLiteral(["\n display: flex;\n z-index: 2;\n top: -65%;\n position: absolute;\n transform: translate(-50%, -50%);\n transition: left 200ms ease-out;\n"])));
11489
11489
 
11490
11490
  var stepGuard = function stepGuard(step) {
11491
11491
  if (step < 0) {
@@ -11533,9 +11533,9 @@ var variant = {
11533
11533
 
11534
11534
  var _excluded$6 = ["variant", "animation"];
11535
11535
  var _templateObject$1c, _templateObject2$K, _templateObject3$B, _templateObject4$t, _templateObject5$r;
11536
- var waves = styled.keyframes(_templateObject$1c || (_templateObject$1c = _taggedTemplateLiteral(["\n from {\n left: -150px;\n }\n to {\n left: 100%;\n }\n"])));
11537
- var pulse = styled.keyframes(_templateObject2$K || (_templateObject2$K = _taggedTemplateLiteral(["\n 0% {\n opacity: 1;\n }\n 50% {\n opacity: 0.4;\n }\n 100% {\n opacity: 1;\n }\n"])));
11538
- var Root = styled.div(_templateObject3$B || (_templateObject3$B = _taggedTemplateLiteral(["\n min-height: 20px;\n display: block;\n background-color: ", ";\n border-radius: ", ";\n\n ", "\n ", "\n"])), function (_ref) {
11536
+ var waves = styledComponents.keyframes(_templateObject$1c || (_templateObject$1c = _taggedTemplateLiteral(["\n from {\n left: -150px;\n }\n to {\n left: 100%;\n }\n"])));
11537
+ var pulse = styledComponents.keyframes(_templateObject2$K || (_templateObject2$K = _taggedTemplateLiteral(["\n 0% {\n opacity: 1;\n }\n 50% {\n opacity: 0.4;\n }\n 100% {\n opacity: 1;\n }\n"])));
11538
+ var Root = styledComponents.styled.div(_templateObject3$B || (_templateObject3$B = _taggedTemplateLiteral(["\n min-height: 20px;\n display: block;\n background-color: ", ";\n border-radius: ", ";\n\n ", "\n ", "\n"])), function (_ref) {
11539
11539
  var theme = _ref.theme;
11540
11540
  return theme.colors.backgroundDisabled;
11541
11541
  }, function (_ref2) {
@@ -11543,8 +11543,8 @@ var Root = styled.div(_templateObject3$B || (_templateObject3$B = _taggedTemplat
11543
11543
  theme = _ref2.theme;
11544
11544
  return variant$1 === variant.CIRCLE ? theme.radii.circle : theme.radii.small;
11545
11545
  }, styledSystem.layout, styledSystem.space);
11546
- var Pulse = styled(Root)(_templateObject4$t || (_templateObject4$t = _taggedTemplateLiteral(["\n animation: ", " 2s infinite ease-out;\n transform: translate3d(0, 0, 0);\n"])), pulse);
11547
- var Waves = styled(Root)(_templateObject5$r || (_templateObject5$r = _taggedTemplateLiteral(["\n position: relative;\n overflow: hidden;\n transform: translate3d(0, 0, 0);\n display: flex;\n justify-content: center;\n align-items: center;\n &:before {\n content: \"\";\n position: absolute;\n background-image: linear-gradient(90deg, transparent, rgba(243, 243, 243, 0.5), transparent);\n top: 0;\n left: -150px;\n height: 100%;\n width: 150px;\n animation: ", " 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;\n }\n"])), waves);
11546
+ var Pulse = styledComponents.styled(Root)(_templateObject4$t || (_templateObject4$t = _taggedTemplateLiteral(["\n animation: ", " 2s infinite ease-out;\n transform: translate3d(0, 0, 0);\n"])), pulse);
11547
+ var Waves = styledComponents.styled(Root)(_templateObject5$r || (_templateObject5$r = _taggedTemplateLiteral(["\n position: relative;\n overflow: hidden;\n transform: translate3d(0, 0, 0);\n display: flex;\n justify-content: center;\n align-items: center;\n &:before {\n content: \"\";\n position: absolute;\n background-image: linear-gradient(90deg, transparent, rgba(243, 243, 243, 0.5), transparent);\n top: 0;\n left: -150px;\n height: 100%;\n width: 150px;\n animation: ", " 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;\n }\n"])), waves);
11548
11548
  var Skeleton = function Skeleton(_ref3) {
11549
11549
  var _ref3$variant = _ref3.variant,
11550
11550
  variant$1 = _ref3$variant === void 0 ? variant.RECT : _ref3$variant,
@@ -11563,8 +11563,8 @@ var Skeleton = function Skeleton(_ref3) {
11563
11563
 
11564
11564
  var _excluded$5 = ["text"];
11565
11565
  var _templateObject$1b, _templateObject2$J;
11566
- var StyledButton = styled(Button$1)(_templateObject$1b || (_templateObject$1b = _taggedTemplateLiteral(["\n width: 100%;\n display: flex;\n justify-content: space-between;\n align-items: center;\n padding: 11px 27px;\n border-radius: 10px;\n // Should this color be added to theme colors?\n background-color: rgb(43, 43, 56);\n\n #open-new {\n width: 13.25px;\n height: 13.25px;\n }\n"])));
11567
- var DetailsContainer = styled.div(_templateObject2$J || (_templateObject2$J = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n\n * {\n margin-right: 10px;\n }\n"])));
11566
+ var StyledButton = styledComponents.styled(Button$1)(_templateObject$1b || (_templateObject$1b = _taggedTemplateLiteral(["\n width: 100%;\n display: flex;\n justify-content: space-between;\n align-items: center;\n padding: 11px 27px;\n border-radius: 10px;\n // Should this color be added to theme colors?\n background-color: rgb(43, 43, 56);\n\n #open-new {\n width: 13.25px;\n height: 13.25px;\n }\n"])));
11567
+ var DetailsContainer = styledComponents.styled.div(_templateObject2$J || (_templateObject2$J = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n\n * {\n margin-right: 10px;\n }\n"])));
11568
11568
  var SwapButton = function SwapButton(_ref) {
11569
11569
  var _ref$text = _ref.text,
11570
11570
  text = _ref$text === void 0 ? "Token info page" : _ref$text,
@@ -12277,7 +12277,7 @@ var lightTheme = _objectSpread2(_objectSpread2({}, base), {}, {
12277
12277
  });
12278
12278
 
12279
12279
  var _templateObject$1a;
12280
- var TableActiveDot = styled.div(_templateObject$1a || (_templateObject$1a = _taggedTemplateLiteral(["\n width: 8px;\n height: 8px;\n background: ", ";\n border-radius: 50%;\n margin: auto;\n box-shadow: ", ";\n @media (max-width: 576px) {\n margin: 0;\n }\n"])), function (_ref) {
12280
+ var TableActiveDot = styledComponents.styled.div(_templateObject$1a || (_templateObject$1a = _taggedTemplateLiteral(["\n width: 8px;\n height: 8px;\n background: ", ";\n border-radius: 50%;\n margin: auto;\n box-shadow: ", ";\n @media (max-width: 576px) {\n margin: 0;\n }\n"])), function (_ref) {
12281
12281
  var actionActive = _ref.actionActive;
12282
12282
  return actionActive ? "#12FFB8" : "#373749";
12283
12283
  }, function (_ref2) {
@@ -12286,7 +12286,7 @@ var TableActiveDot = styled.div(_templateObject$1a || (_templateObject$1a = _tag
12286
12286
  });
12287
12287
 
12288
12288
  var _templateObject$19, _templateObject2$I, _templateObject3$A, _templateObject4$s, _templateObject5$q;
12289
- var StyledRow = styled.div(_templateObject$19 || (_templateObject$19 = _taggedTemplateLiteral(["\n position: relative;\n width: calc(100% - 60px);\n height: ", ";\n margin: ", " 30px 0 30px;\n padding: ", ";\n display: flex;\n align-items: center;\n justify-content: center;\n flex-direction: column;\n border-radius: ", ";\n border: ", ";\n border-bottom: ", ";\n background: ", ";\n @media (max-width: 576px) {\n min-height: 59px;\n width: calc(100% - 16px);\n margin: ", " 8px 0 8px;\n }\n"])), function (_ref) {
12289
+ var StyledRow = styledComponents.styled.div(_templateObject$19 || (_templateObject$19 = _taggedTemplateLiteral(["\n position: relative;\n width: calc(100% - 60px);\n height: ", ";\n margin: ", " 30px 0 30px;\n padding: ", ";\n display: flex;\n align-items: center;\n justify-content: center;\n flex-direction: column;\n border-radius: ", ";\n border: ", ";\n border-bottom: ", ";\n background: ", ";\n @media (max-width: 576px) {\n min-height: 59px;\n width: calc(100% - 16px);\n margin: ", " 8px 0 8px;\n }\n"])), function (_ref) {
12290
12290
  var active = _ref.active;
12291
12291
  return active ? "auto" : "77.5px";
12292
12292
  }, function (_ref2) {
@@ -12312,10 +12312,10 @@ var StyledRow = styled.div(_templateObject$19 || (_templateObject$19 = _taggedTe
12312
12312
  var active = _ref8.active;
12313
12313
  return active ? "5.5px" : "0px";
12314
12314
  });
12315
- var StyledTableChildren = styled(GridLayout$1)(_templateObject2$I || (_templateObject2$I = _taggedTemplateLiteral(["\n width: 100%;\n height: 77.5px;\n align-items: center;\n justify-content: center;\n flex-direction: row;\n cursor: pointer;\n position: relative;\n"])));
12316
- var StyledTableDetails = styled(GridLayout$1)(_templateObject3$A || (_templateObject3$A = _taggedTemplateLiteral(["\n padding: 13px;\n width: 100%;\n height: 100%;\n display: flex;\n flex-direction: column;\n"])));
12317
- var ToggleContainer = styled.div(_templateObject4$s || (_templateObject4$s = _taggedTemplateLiteral(["\n grid-column: span 1 / -1;\n cursor: pointer;\n margin-right: 19px;\n @media (max-width: 576px) {\n position: absolute;\n right: 0;\n margin-right: 10px;\n }\n"])));
12318
- var DotContainer = styled.div(_templateObject5$q || (_templateObject5$q = _taggedTemplateLiteral(["\n grid-column: span 1;\n @media (max-width: 576px) {\n margin-left: 10px;\n }\n"])));
12315
+ var StyledTableChildren = styledComponents.styled(GridLayout$1)(_templateObject2$I || (_templateObject2$I = _taggedTemplateLiteral(["\n width: 100%;\n height: 77.5px;\n align-items: center;\n justify-content: center;\n flex-direction: row;\n cursor: pointer;\n position: relative;\n"])));
12316
+ var StyledTableDetails = styledComponents.styled(GridLayout$1)(_templateObject3$A || (_templateObject3$A = _taggedTemplateLiteral(["\n padding: 13px;\n width: 100%;\n height: 100%;\n display: flex;\n flex-direction: column;\n"])));
12317
+ var ToggleContainer = styledComponents.styled.div(_templateObject4$s || (_templateObject4$s = _taggedTemplateLiteral(["\n grid-column: span 1 / -1;\n cursor: pointer;\n margin-right: 19px;\n @media (max-width: 576px) {\n position: absolute;\n right: 0;\n margin-right: 10px;\n }\n"])));
12318
+ var DotContainer = styledComponents.styled.div(_templateObject5$q || (_templateObject5$q = _taggedTemplateLiteral(["\n grid-column: span 1;\n @media (max-width: 576px) {\n margin-left: 10px;\n }\n"])));
12319
12319
  var TableRow = function TableRow(_ref9) {
12320
12320
  var children = _ref9.children,
12321
12321
  details = _ref9.details,
@@ -12354,9 +12354,9 @@ var TableRow = function TableRow(_ref9) {
12354
12354
  };
12355
12355
 
12356
12356
  var _templateObject$18, _templateObject2$H, _templateObject3$z;
12357
- var LiquidityWrapper = styled.div(_templateObject$18 || (_templateObject$18 = _taggedTemplateLiteral(["\n padding-right: 4px;\n width: 100%;\n"])));
12358
- var DescriptionRow = styled.div(_templateObject2$H || (_templateObject2$H = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n align-items: center;\n"])));
12359
- var Container$5 = styled.div(_templateObject3$z || (_templateObject3$z = _taggedTemplateLiteral(["\n height: 100%;\n padding: 17px;\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n align-items: space-around;\n grid-column: span ", ";\n border: 1px solid rgba(255, 255, 255, 0.1);\n border-radius: 10px;\n svg {\n margin-left: 0;\n }\n"])), function (_ref) {
12357
+ var LiquidityWrapper = styledComponents.styled.div(_templateObject$18 || (_templateObject$18 = _taggedTemplateLiteral(["\n padding-right: 4px;\n width: 100%;\n"])));
12358
+ var DescriptionRow = styledComponents.styled.div(_templateObject2$H || (_templateObject2$H = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n align-items: center;\n"])));
12359
+ var Container$5 = styledComponents.styled.div(_templateObject3$z || (_templateObject3$z = _taggedTemplateLiteral(["\n height: 100%;\n padding: 17px;\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n align-items: space-around;\n grid-column: span ", ";\n border: 1px solid rgba(255, 255, 255, 0.1);\n border-radius: 10px;\n svg {\n margin-left: 0;\n }\n"])), function (_ref) {
12360
12360
  var grid = _ref.grid;
12361
12361
  return grid;
12362
12362
  });
@@ -12389,7 +12389,7 @@ var LiquidityContainer = function LiquidityContainer(_ref2) {
12389
12389
  };
12390
12390
 
12391
12391
  var _templateObject$17, _templateObject2$G, _templateObject3$y;
12392
- var Container$4 = styled.div(_templateObject$17 || (_templateObject$17 = _taggedTemplateLiteral(["\n width: 100%;\n padding: ", ";\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n align-items: space-around;\n grid-column: span ", ";\n border: ", ";\n border-radius: 10px;\n svg {\n margin-left: 0;\n }\n"])), function (_ref) {
12392
+ var Container$4 = styledComponents.styled.div(_templateObject$17 || (_templateObject$17 = _taggedTemplateLiteral(["\n width: 100%;\n padding: ", ";\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n align-items: space-around;\n grid-column: span ", ";\n border: ", ";\n border-radius: 10px;\n svg {\n margin-left: 0;\n }\n"])), function (_ref) {
12393
12393
  var mobile = _ref.mobile;
12394
12394
  return mobile ? "0px" : "17px";
12395
12395
  }, function (_ref2) {
@@ -12399,11 +12399,11 @@ var Container$4 = styled.div(_templateObject$17 || (_templateObject$17 = _tagged
12399
12399
  var mobile = _ref3.mobile;
12400
12400
  return mobile ? "none" : "1px solid rgba(255, 255, 255, 0.1)";
12401
12401
  });
12402
- var TokenValueWrapper = styled.div(_templateObject2$G || (_templateObject2$G = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: ", ";\n"])), function (_ref4) {
12402
+ var TokenValueWrapper = styledComponents.styled.div(_templateObject2$G || (_templateObject2$G = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: ", ";\n"])), function (_ref4) {
12403
12403
  var mobile = _ref4.mobile;
12404
12404
  return mobile ? "flex-start" : "space-between";
12405
12405
  });
12406
- var ActionsWrapper = styled.div(_templateObject3$y || (_templateObject3$y = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n margin-top: 4px;\n width: 100%;\n justify-content: space-between;\n"])));
12406
+ var ActionsWrapper = styledComponents.styled.div(_templateObject3$y || (_templateObject3$y = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n margin-top: 4px;\n width: 100%;\n justify-content: space-between;\n"])));
12407
12407
  var TableActionBox = function TableActionBox(_ref5) {
12408
12408
  var title = _ref5.title,
12409
12409
  value = _ref5.value,
@@ -12464,14 +12464,14 @@ var getNumberedDifference = function getNumberedDifference(differenceToConvert)
12464
12464
  };
12465
12465
 
12466
12466
  var _templateObject$16, _templateObject2$F, _templateObject3$x, _templateObject4$r, _templateObject5$p;
12467
- var ValueBox = styled.div(_templateObject$16 || (_templateObject$16 = _taggedTemplateLiteral(["\n background: transparent;\n color: white;\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: flex-start;\n max-width: 190px;\n"])));
12468
- var IconColumn = styled.div(_templateObject2$F || (_templateObject2$F = _taggedTemplateLiteral(["\n width: auto;\n padding-right: 10px;\n padding-top: 1px;\n"])));
12469
- var InfoColumn = styled.div(_templateObject3$x || (_templateObject3$x = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n"])));
12470
- var PairContainer = styled.div(_templateObject4$r || (_templateObject4$r = _taggedTemplateLiteral(["\n width: 100%;\n display: flex;\n margin-bottom: 5px;\n align-items: center;\n flex-direction: ", ";\n"])), function (_ref) {
12467
+ var ValueBox = styledComponents.styled.div(_templateObject$16 || (_templateObject$16 = _taggedTemplateLiteral(["\n background: transparent;\n color: white;\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: flex-start;\n max-width: 190px;\n"])));
12468
+ var IconColumn = styledComponents.styled.div(_templateObject2$F || (_templateObject2$F = _taggedTemplateLiteral(["\n width: auto;\n padding-right: 10px;\n padding-top: 1px;\n"])));
12469
+ var InfoColumn = styledComponents.styled.div(_templateObject3$x || (_templateObject3$x = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n"])));
12470
+ var PairContainer = styledComponents.styled.div(_templateObject4$r || (_templateObject4$r = _taggedTemplateLiteral(["\n width: 100%;\n display: flex;\n margin-bottom: 5px;\n align-items: center;\n flex-direction: ", ";\n"])), function (_ref) {
12471
12471
  var mobile = _ref.mobile;
12472
12472
  return mobile ? "column" : "row";
12473
12473
  });
12474
- var ValueRow = styled.div(_templateObject5$p || (_templateObject5$p = _taggedTemplateLiteral(["\n width: 100%;\n"])));
12474
+ var ValueRow = styledComponents.styled.div(_templateObject5$p || (_templateObject5$p = _taggedTemplateLiteral(["\n width: 100%;\n"])));
12475
12475
  var Value = function Value(_ref2) {
12476
12476
  var coin = _ref2.coin,
12477
12477
  value = _ref2.value,
@@ -12526,8 +12526,8 @@ var Value = function Value(_ref2) {
12526
12526
  };
12527
12527
 
12528
12528
  var _templateObject$15, _templateObject2$E;
12529
- var ValueFullBox = styled.div(_templateObject$15 || (_templateObject$15 = _taggedTemplateLiteral(["\n background: transparent;\n color: white;\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: flex-start;\n width: 100%;\n"])));
12530
- var DifferenceBox = styled.div(_templateObject2$E || (_templateObject2$E = _taggedTemplateLiteral(["\n display: flex;\n justify-content: flex-start;\n align-items: center;\n height: 24px;\n"])));
12529
+ var ValueFullBox = styledComponents.styled.div(_templateObject$15 || (_templateObject$15 = _taggedTemplateLiteral(["\n background: transparent;\n color: white;\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: flex-start;\n width: 100%;\n"])));
12530
+ var DifferenceBox = styledComponents.styled.div(_templateObject2$E || (_templateObject2$E = _taggedTemplateLiteral(["\n display: flex;\n justify-content: flex-start;\n align-items: center;\n height: 24px;\n"])));
12531
12531
  var ValueFull = function ValueFull(_ref) {
12532
12532
  var value = _ref.value,
12533
12533
  difference = _ref.difference;
@@ -12559,7 +12559,7 @@ var ValueFull = function ValueFull(_ref) {
12559
12559
  };
12560
12560
 
12561
12561
  var _templateObject$14;
12562
- var VContainer = styled.div(_templateObject$14 || (_templateObject$14 = _taggedTemplateLiteral(["\n position: absolute;\n right: 20px;\n bottom: 20px;\n color: ", ";\n opacity: 0.6;\n font-size: 12px;\n"])), function (_ref) {
12562
+ var VContainer = styledComponents.styled.div(_templateObject$14 || (_templateObject$14 = _taggedTemplateLiteral(["\n position: absolute;\n right: 20px;\n bottom: 20px;\n color: ", ";\n opacity: 0.6;\n font-size: 12px;\n"])), function (_ref) {
12563
12563
  var theme = _ref.theme;
12564
12564
  return theme.colors.secondaryText;
12565
12565
  });
@@ -12571,23 +12571,23 @@ var VersionContainer = function VersionContainer(_ref2) {
12571
12571
  };
12572
12572
 
12573
12573
  var _templateObject$13, _templateObject2$D, _templateObject3$w, _templateObject4$q, _templateObject5$o, _templateObject6$h, _templateObject7$d;
12574
- var ProgressDataColumn = styled.div(_templateObject$13 || (_templateObject$13 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n width: 100%;\n height: 100%;\n"])));
12575
- var ProgressDataRow = styled.div(_templateObject2$D || (_templateObject2$D = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n"])));
12576
- var ProgressBarWrapper = styled.div(_templateObject3$w || (_templateObject3$w = _taggedTemplateLiteral(["\n position: relative;\n width: 100%;\n height: 8px;\n background: #272730;\n display: flex;\n justify-content: flex-start;\n align-items: center;\n border-radius: 4px;\n box-sizing: border-box;\n"])));
12577
- var ProgressBar = styled.div(_templateObject4$q || (_templateObject4$q = _taggedTemplateLiteral(["\n position: relative;\n height: 100%;\n width: ", "%;\n background: ", ";\n border-radius: 4px;\n"])), function (_ref) {
12574
+ var ProgressDataColumn = styledComponents.styled.div(_templateObject$13 || (_templateObject$13 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n width: 100%;\n height: 100%;\n"])));
12575
+ var ProgressDataRow = styledComponents.styled.div(_templateObject2$D || (_templateObject2$D = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n"])));
12576
+ var ProgressBarWrapper = styledComponents.styled.div(_templateObject3$w || (_templateObject3$w = _taggedTemplateLiteral(["\n position: relative;\n width: 100%;\n height: 8px;\n background: #272730;\n display: flex;\n justify-content: flex-start;\n align-items: center;\n border-radius: 4px;\n box-sizing: border-box;\n"])));
12577
+ var ProgressBar = styledComponents.styled.div(_templateObject4$q || (_templateObject4$q = _taggedTemplateLiteral(["\n position: relative;\n height: 100%;\n width: ", "%;\n background: ", ";\n border-radius: 4px;\n"])), function (_ref) {
12578
12578
  var width = _ref.width;
12579
12579
  return width;
12580
12580
  }, function (_ref2) {
12581
12581
  var theme = _ref2.theme;
12582
12582
  return theme.colors.primary;
12583
12583
  });
12584
- var ProgressDescription = styled(Text)(_templateObject5$o || (_templateObject5$o = _taggedTemplateLiteral(["\n font-weight: 600;\n font-size: 18px;\n line-height: 170%;\n color: ", ";\n margin-bottom: 8px;\n"])), function (_ref3) {
12584
+ var ProgressDescription = styledComponents.styled(Text)(_templateObject5$o || (_templateObject5$o = _taggedTemplateLiteral(["\n font-weight: 600;\n font-size: 18px;\n line-height: 170%;\n color: ", ";\n margin-bottom: 8px;\n"])), function (_ref3) {
12585
12585
  var theme = _ref3.theme,
12586
12586
  color = _ref3.color;
12587
12587
  return color || theme.colors.white;
12588
12588
  });
12589
- var CapDescription = styled(Text)(_templateObject6$h || (_templateObject6$h = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 14px;\n line-height: 170%;\n color: #818c92;\n margin-top: 4px;\n"])));
12590
- var StyledCapRow = styled.div(_templateObject7$d || (_templateObject7$d = _taggedTemplateLiteral(["\n display: flex;\n"])));
12589
+ var CapDescription = styledComponents.styled(Text)(_templateObject6$h || (_templateObject6$h = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 14px;\n line-height: 170%;\n color: #818c92;\n margin-top: 4px;\n"])));
12590
+ var StyledCapRow = styledComponents.styled.div(_templateObject7$d || (_templateObject7$d = _taggedTemplateLiteral(["\n display: flex;\n"])));
12591
12591
  var SpacePadProgressBar = function SpacePadProgressBar(_ref4) {
12592
12592
  var _ref4$currentCap = _ref4.currentCap,
12593
12593
  currentCap = _ref4$currentCap === void 0 ? 70 : _ref4$currentCap,
@@ -12632,23 +12632,23 @@ var SpacePadProgressBar = function SpacePadProgressBar(_ref4) {
12632
12632
  };
12633
12633
 
12634
12634
  var _templateObject$12, _templateObject2$C, _templateObject3$v, _templateObject4$p, _templateObject5$n;
12635
- var MainWrapper$1 = styled.div(_templateObject$12 || (_templateObject$12 = _taggedTemplateLiteral(["\n display: flex;\n height: 94px;\n justify-content: flex-start;\n align-items: center;\n flex-direction: row;\n"])));
12636
- var ProjectImage = styled.div(_templateObject2$C || (_templateObject2$C = _taggedTemplateLiteral(["\n display: flex;\n width: 46px;\n height: 46px;\n margin-right: 34px;\n border-radius: 50%;\n justify-content: center;\n align-items: center;\n ", " {\n margin-right: 12px;\n }\n"])), function (_ref) {
12635
+ var MainWrapper$1 = styledComponents.styled.div(_templateObject$12 || (_templateObject$12 = _taggedTemplateLiteral(["\n display: flex;\n height: 94px;\n justify-content: flex-start;\n align-items: center;\n flex-direction: row;\n"])));
12636
+ var ProjectImage = styledComponents.styled.div(_templateObject2$C || (_templateObject2$C = _taggedTemplateLiteral(["\n display: flex;\n width: 46px;\n height: 46px;\n margin-right: 34px;\n border-radius: 50%;\n justify-content: center;\n align-items: center;\n ", " {\n margin-right: 12px;\n }\n"])), function (_ref) {
12637
12637
  var theme = _ref.theme;
12638
12638
  return theme.mediaQueries.mobile;
12639
12639
  });
12640
- var ProjectName$1 = styled.div(_templateObject3$v || (_templateObject3$v = _taggedTemplateLiteral(["\n display: flex;\n margin-right: 8px;\n justify-content: center;\n align-items: flex-end;\n font-size: 26px;\n font-weight: bold;\n color: ", ";\n ", " {\n margin-bottom: 6px;\n }\n"])), function (_ref2) {
12640
+ var ProjectName$1 = styledComponents.styled.div(_templateObject3$v || (_templateObject3$v = _taggedTemplateLiteral(["\n display: flex;\n margin-right: 8px;\n justify-content: center;\n align-items: flex-end;\n font-size: 26px;\n font-weight: bold;\n color: ", ";\n ", " {\n margin-bottom: 6px;\n }\n"])), function (_ref2) {
12641
12641
  var theme = _ref2.theme;
12642
12642
  return theme.colors.white;
12643
12643
  }, function (_ref3) {
12644
12644
  var theme = _ref3.theme;
12645
12645
  return theme.mediaQueries.mobile;
12646
12646
  });
12647
- var ProjectFullName = styled.div(_templateObject4$p || (_templateObject4$p = _taggedTemplateLiteral(["\n display: flex;\n align-items: flex-end;\n justify-content: center;\n color: ", ";\n letter-spacing: 0.03rem;\n font-size: 14px;\n"])), function (_ref4) {
12647
+ var ProjectFullName = styledComponents.styled.div(_templateObject4$p || (_templateObject4$p = _taggedTemplateLiteral(["\n display: flex;\n align-items: flex-end;\n justify-content: center;\n color: ", ";\n letter-spacing: 0.03rem;\n font-size: 14px;\n"])), function (_ref4) {
12648
12648
  var theme = _ref4.theme;
12649
12649
  return theme.colors.white55;
12650
12650
  });
12651
- var ProjectDetails = styled.div(_templateObject5$n || (_templateObject5$n = _taggedTemplateLiteral(["\n display: flex;\n align-items: flex-end;\n justify-content: flex-start;\n ", " {\n flex-direction: column;\n align-items: flex-start;\n }\n"])), function (_ref5) {
12651
+ var ProjectDetails = styledComponents.styled.div(_templateObject5$n || (_templateObject5$n = _taggedTemplateLiteral(["\n display: flex;\n align-items: flex-end;\n justify-content: flex-start;\n ", " {\n flex-direction: column;\n align-items: flex-start;\n }\n"])), function (_ref5) {
12652
12652
  var theme = _ref5.theme;
12653
12653
  return theme.mediaQueries.mobile;
12654
12654
  });
@@ -13023,10 +13023,10 @@ var connectors = [{
13023
13023
  var connectorLocalStorageKey = "connectorId";
13024
13024
 
13025
13025
  var _templateObject$11;
13026
- var AccountNumber = styled(Text)(_templateObject$11 || (_templateObject$11 = _taggedTemplateLiteral(["\n color: #818c92;\n line-height: 23.8px;\n"])));
13026
+ var AccountNumber = styledComponents.styled(Text)(_templateObject$11 || (_templateObject$11 = _taggedTemplateLiteral(["\n color: #818c92;\n line-height: 23.8px;\n"])));
13027
13027
 
13028
13028
  var _templateObject$10;
13029
- var AccountNumberWrapper = styled.div(_templateObject$10 || (_templateObject$10 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: ", ";\n align-items: center;\n justify-content: center;\n text-align: ", ";\n"])), function (_ref) {
13029
+ var AccountNumberWrapper = styledComponents.styled.div(_templateObject$10 || (_templateObject$10 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: ", ";\n align-items: center;\n justify-content: center;\n text-align: ", ";\n"])), function (_ref) {
13030
13030
  var isVerifiedUser = _ref.isVerifiedUser;
13031
13031
  return !isVerifiedUser ? "column" : "row";
13032
13032
  }, function (_ref2) {
@@ -13035,56 +13035,56 @@ var AccountNumberWrapper = styled.div(_templateObject$10 || (_templateObject$10
13035
13035
  });
13036
13036
 
13037
13037
  var _templateObject$$;
13038
- var Background = styled.div(_templateObject$$ || (_templateObject$$ = _taggedTemplateLiteral(["\n position: absolute;\n width: 100vw;\n height: 100vh;\n background-color: black;\n opacity: 0.4;\n left: 0;\n top: 0;\n z-index: 11;\n"])));
13038
+ var Background = styledComponents.styled.div(_templateObject$$ || (_templateObject$$ = _taggedTemplateLiteral(["\n position: absolute;\n width: 100vw;\n height: 100vh;\n background-color: black;\n opacity: 0.4;\n left: 0;\n top: 0;\n z-index: 11;\n"])));
13039
13039
 
13040
13040
  var _templateObject$_;
13041
- var BottomRow = styled.div(_templateObject$_ || (_templateObject$_ = _taggedTemplateLiteral(["\n padding-top: 20px;\n"])));
13041
+ var BottomRow = styledComponents.styled.div(_templateObject$_ || (_templateObject$_ = _taggedTemplateLiteral(["\n padding-top: 20px;\n"])));
13042
13042
 
13043
13043
  var _templateObject$Z;
13044
- styled(Button$1)(_templateObject$Z || (_templateObject$Z = _taggedTemplateLiteral(["\n background: #383847;\n color: ", ";\n width: 85px;\n height: 32px;\n font-size: 14px;\n"])), function (_ref) {
13044
+ styledComponents.styled(Button$1)(_templateObject$Z || (_templateObject$Z = _taggedTemplateLiteral(["\n background: #383847;\n color: ", ";\n width: 85px;\n height: 32px;\n font-size: 14px;\n"])), function (_ref) {
13045
13045
  var theme = _ref.theme;
13046
13046
  return theme.colors.white;
13047
13047
  });
13048
13048
 
13049
13049
  var _templateObject$Y;
13050
- var CloseButton = styled(Icon$2m)(_templateObject$Y || (_templateObject$Y = _taggedTemplateLiteral(["\n width: 24px;\n height: 24px;\n border-radius: 50%;\n cursor: pointer;\n background: #383847;\n position: absolute;\n left: -35px;\n top: 5px;\n"])));
13050
+ var CloseButton = styledComponents.styled(Icon$2m)(_templateObject$Y || (_templateObject$Y = _taggedTemplateLiteral(["\n width: 24px;\n height: 24px;\n border-radius: 50%;\n cursor: pointer;\n background: #383847;\n position: absolute;\n left: -35px;\n top: 5px;\n"])));
13051
13051
 
13052
13052
  var _templateObject$X;
13053
- var ConnectedInfoWrapper = styled.div(_templateObject$X || (_templateObject$X = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n justify-content: space-between;\n margin-top: 16px;\n"])));
13053
+ var ConnectedInfoWrapper = styledComponents.styled.div(_templateObject$X || (_templateObject$X = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n justify-content: space-between;\n margin-top: 16px;\n"])));
13054
13054
 
13055
13055
  var _templateObject$W;
13056
- var ConnectedProvider = styled.div(_templateObject$W || (_templateObject$W = _taggedTemplateLiteral(["\n height: 72px;\n width: 309px;\n margin-top: 24px;\n display: flex;\n align-items: center;\n padding-left: 32px;\n border-radius: 10px;\n background: #272730;\n"])));
13056
+ var ConnectedProvider = styledComponents.styled.div(_templateObject$W || (_templateObject$W = _taggedTemplateLiteral(["\n height: 72px;\n width: 309px;\n margin-top: 24px;\n display: flex;\n align-items: center;\n padding-left: 32px;\n border-radius: 10px;\n background: #272730;\n"])));
13057
13057
 
13058
13058
  var _templateObject$V, _templateObject2$B;
13059
- var fadeInAnimation = styled.keyframes(_templateObject$V || (_templateObject$V = _taggedTemplateLiteral(["\n 0% {\n right: -357px;\n }\n 100% {\n right: 0;\n }\n"])));
13060
- var ConnectWalletWrapper = styled.div(_templateObject2$B || (_templateObject2$B = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n width: 357px;\n height: 100vh;\n padding: 24px;\n background: #191921;\n position: fixed;\n top: 0%;\n right: 0;\n animation: ", " 0.4s;\n z-index: 20;\n"])), fadeInAnimation);
13059
+ var fadeInAnimation = styledComponents.keyframes(_templateObject$V || (_templateObject$V = _taggedTemplateLiteral(["\n 0% {\n right: -357px;\n }\n 100% {\n right: 0;\n }\n"])));
13060
+ var ConnectWalletWrapper = styledComponents.styled.div(_templateObject2$B || (_templateObject2$B = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n width: 357px;\n height: 100vh;\n padding: 24px;\n background: #191921;\n position: fixed;\n top: 0%;\n right: 0;\n animation: ", " 0.4s;\n z-index: 20;\n"])), fadeInAnimation);
13061
13061
 
13062
13062
  var _templateObject$U;
13063
- var LogoutButton = styled(Button$1)(_templateObject$U || (_templateObject$U = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n justify-content: center;\n background: #383847;\n color: ", ";\n width: 100%;\n font-weight: 700;\n font-size: 14px;\n"])), function (_ref) {
13063
+ var LogoutButton = styledComponents.styled(Button$1)(_templateObject$U || (_templateObject$U = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n justify-content: center;\n background: #383847;\n color: ", ";\n width: 100%;\n font-weight: 700;\n font-size: 14px;\n"])), function (_ref) {
13064
13064
  var theme = _ref.theme;
13065
13065
  return theme.colors.white;
13066
13066
  });
13067
13067
 
13068
13068
  var _templateObject$T;
13069
- var MiddleRow = styled.div(_templateObject$T || (_templateObject$T = _taggedTemplateLiteral(["\n padding: 20px 0;\n border-bottom: 1px solid #252530;\n"])));
13069
+ var MiddleRow = styledComponents.styled.div(_templateObject$T || (_templateObject$T = _taggedTemplateLiteral(["\n padding: 20px 0;\n border-bottom: 1px solid #252530;\n"])));
13070
13070
 
13071
13071
  var _templateObject$S;
13072
- var MyWallet = styled(Text)(_templateObject$S || (_templateObject$S = _taggedTemplateLiteral(["\n line-height: 28px;\n margin-left: 18px;\n"])));
13072
+ var MyWallet = styledComponents.styled(Text)(_templateObject$S || (_templateObject$S = _taggedTemplateLiteral(["\n line-height: 28px;\n margin-left: 18px;\n"])));
13073
13073
 
13074
13074
  var _templateObject$R;
13075
- var MyWalletWrapper = styled.div(_templateObject$R || (_templateObject$R = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n"])));
13075
+ var MyWalletWrapper = styledComponents.styled.div(_templateObject$R || (_templateObject$R = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n"])));
13076
13076
 
13077
13077
  var _templateObject$Q;
13078
- var ProviderTitle = styled(Text)(_templateObject$Q || (_templateObject$Q = _taggedTemplateLiteral(["\n font-weight: 600;\n line-height: 24px;\n margin-left: 16px;\n"])));
13078
+ var ProviderTitle = styledComponents.styled(Text)(_templateObject$Q || (_templateObject$Q = _taggedTemplateLiteral(["\n font-weight: 600;\n line-height: 24px;\n margin-left: 16px;\n"])));
13079
13079
 
13080
13080
  var _templateObject$P;
13081
- var SettingsButton = styled(Button$1)(_templateObject$P || (_templateObject$P = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n justify-content: center;\n background: #383847;\n color: ", ";\n width: 100%;\n font-weight: 700;\n font-size: 14px;\n margin-bottom: 16px;\n"])), function (_ref) {
13081
+ var SettingsButton = styledComponents.styled(Button$1)(_templateObject$P || (_templateObject$P = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n justify-content: center;\n background: #383847;\n color: ", ";\n width: 100%;\n font-weight: 700;\n font-size: 14px;\n margin-bottom: 16px;\n"])), function (_ref) {
13082
13082
  var theme = _ref.theme;
13083
13083
  return theme.colors.white;
13084
13084
  });
13085
13085
 
13086
13086
  var _templateObject$O;
13087
- var UpperRow = styled.div(_templateObject$O || (_templateObject$O = _taggedTemplateLiteral(["\n width: 100%;\n height: 54px;\n display: flex;\n align-items: ", ";\n justify-content: ", ";\n border-bottom: 1px solid #252530;\n position: relative;\n padding-bottom: 20px;\n"])), function (_ref) {
13087
+ var UpperRow = styledComponents.styled.div(_templateObject$O || (_templateObject$O = _taggedTemplateLiteral(["\n width: 100%;\n height: 54px;\n display: flex;\n align-items: ", ";\n justify-content: ", ";\n border-bottom: 1px solid #252530;\n position: relative;\n padding-bottom: 20px;\n"])), function (_ref) {
13088
13088
  var alignItems = _ref.alignItems;
13089
13089
  return alignItems && alignItems;
13090
13090
  }, function (_ref2) {
@@ -13093,19 +13093,19 @@ var UpperRow = styled.div(_templateObject$O || (_templateObject$O = _taggedTempl
13093
13093
  });
13094
13094
 
13095
13095
  var _templateObject$N;
13096
- var VerificationInfo = styled.div(_templateObject$N || (_templateObject$N = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n justify-content: space-between;\n margin-top: ", ";\n"])), function (_ref) {
13096
+ var VerificationInfo = styledComponents.styled.div(_templateObject$N || (_templateObject$N = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n justify-content: space-between;\n margin-top: ", ";\n"])), function (_ref) {
13097
13097
  var marginTop = _ref.marginTop;
13098
13098
  return marginTop && marginTop;
13099
13099
  });
13100
13100
 
13101
13101
  var _templateObject$M;
13102
- var VerifiedWalletIcon = styled(Icon$28)(_templateObject$M || (_templateObject$M = _taggedTemplateLiteral(["\n fill: ", ";\n margin-right: 8px;\n"])), function (_ref) {
13102
+ var VerifiedWalletIcon = styledComponents.styled(Icon$28)(_templateObject$M || (_templateObject$M = _taggedTemplateLiteral(["\n fill: ", ";\n margin-right: 8px;\n"])), function (_ref) {
13103
13103
  var theme = _ref.theme;
13104
13104
  return theme.colors.vividBlue;
13105
13105
  });
13106
13106
 
13107
13107
  var _templateObject$L;
13108
- var Provider = styled.div(_templateObject$L || (_templateObject$L = _taggedTemplateLiteral(["\n height: 72px;\n width: 309px;\n display: flex;\n align-items: center;\n padding-left: 32px;\n border-radius: 10px;\n background: ", ";\n margin-bottom: ", ";\n border: 1px solid transparent;\n\n &:hover {\n border: ", ";\n cursor: pointer;\n }\n"])), function (_ref) {
13108
+ var Provider = styledComponents.styled.div(_templateObject$L || (_templateObject$L = _taggedTemplateLiteral(["\n height: 72px;\n width: 309px;\n display: flex;\n align-items: center;\n padding-left: 32px;\n border-radius: 10px;\n background: ", ";\n margin-bottom: ", ";\n border: 1px solid transparent;\n\n &:hover {\n border: ", ";\n cursor: pointer;\n }\n"])), function (_ref) {
13109
13109
  var theme = _ref.theme;
13110
13110
  return theme.backgrounds.secondary;
13111
13111
  }, function (_ref2) {
@@ -13161,7 +13161,7 @@ var Icon$F = function Icon(props) {
13161
13161
  };
13162
13162
 
13163
13163
  var _templateObject$K;
13164
- var ConnectDescription = styled(Text)(_templateObject$K || (_templateObject$K = _taggedTemplateLiteral(["\n line-height: 24px;\n font-weight: 400;\n color: #818c92;\n margin: 16px 0;\n"])));
13164
+ var ConnectDescription = styledComponents.styled(Text)(_templateObject$K || (_templateObject$K = _taggedTemplateLiteral(["\n line-height: 24px;\n font-weight: 400;\n color: #818c92;\n margin: 16px 0;\n"])));
13165
13165
  var ConnectWallet$1 = function ConnectWallet(_ref) {
13166
13166
  var handleLogin = _ref.handleLogin,
13167
13167
  setIsConnectWalletPanelOpen = _ref.setIsConnectWalletPanelOpen,
@@ -13208,12 +13208,12 @@ var ConnectWallet$1 = function ConnectWallet(_ref) {
13208
13208
  };
13209
13209
 
13210
13210
  var _templateObject$J, _templateObject2$A, _templateObject3$u;
13211
- var VerifyAddressIndicator$1 = styled(Text)(_templateObject$J || (_templateObject$J = _taggedTemplateLiteral(["\n color: ", ";\n line-height: 20.4px;\n"])), function (_ref) {
13211
+ var VerifyAddressIndicator$1 = styledComponents.styled(Text)(_templateObject$J || (_templateObject$J = _taggedTemplateLiteral(["\n color: ", ";\n line-height: 20.4px;\n"])), function (_ref) {
13212
13212
  var theme = _ref.theme;
13213
13213
  return theme.colors.red;
13214
13214
  });
13215
- var ConnectedInfo = styled(Text)(_templateObject2$A || (_templateObject2$A = _taggedTemplateLiteral(["\n color: #818c92;\n"])));
13216
- var VerifyButton = styled(Button$1)(_templateObject3$u || (_templateObject3$u = _taggedTemplateLiteral(["\n font-size: 14px;\n width: 100%;\n margin: 24px 0;\n"])));
13215
+ var ConnectedInfo = styledComponents.styled(Text)(_templateObject2$A || (_templateObject2$A = _taggedTemplateLiteral(["\n color: #818c92;\n"])));
13216
+ var VerifyButton = styledComponents.styled(Button$1)(_templateObject3$u || (_templateObject3$u = _taggedTemplateLiteral(["\n font-size: 14px;\n width: 100%;\n margin: 24px 0;\n"])));
13217
13217
  var ConnectWallet = function ConnectWallet(_ref2) {
13218
13218
  var account = _ref2.account,
13219
13219
  setIsConnectWalletPanelOpen = _ref2.setIsConnectWalletPanelOpen;
@@ -13648,43 +13648,43 @@ var getTimeValue = function getTimeValue(value, timeUnit) {
13648
13648
  };
13649
13649
 
13650
13650
  var _templateObject$I, _templateObject2$z, _templateObject3$t, _templateObject4$o, _templateObject5$m, _templateObject6$g, _templateObject7$c, _templateObject8$9, _templateObject9$8, _templateObject0$6, _templateObject1$6, _templateObject10$5, _templateObject11$5, _templateObject12$4, _templateObject13$2;
13651
- var ActiveDot$1 = styled.div(_templateObject$I || (_templateObject$I = _taggedTemplateLiteral(["\n height: 8px;\n width: 8px;\n border-radius: 50%;\n background: ", ";\n margin-right: 8px;\n ", "\n"])), function (_ref) {
13651
+ var ActiveDot$1 = styledComponents.styled.div(_templateObject$I || (_templateObject$I = _taggedTemplateLiteral(["\n height: 8px;\n width: 8px;\n border-radius: 50%;\n background: ", ";\n margin-right: 8px;\n ", "\n"])), function (_ref) {
13652
13652
  var dotColor = _ref.dotColor;
13653
13653
  return dotColor;
13654
13654
  }, function (_ref2) {
13655
13655
  var fetchingData = _ref2.fetchingData;
13656
13656
  return fetchingData && "\n transition: all 0.25s ease-in-out;\n animation: stretch 2s infinite;\n @keyframes stretch {\n 0% {\n transform: scale(1);\n }\n 25% {\n transform: scale(0.9);\n }\n 50% {\n transform: scale(1.2);\n }\n 75% {\n transform: scale(0.9);\n }\n 100% {\n transform: scale(1);\n }\n }\n ";
13657
13657
  });
13658
- var ActivityDescription = styled(Text)(_templateObject2$z || (_templateObject2$z = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 14px;\n line-height: 140%;\n width: max-content;\n"])));
13659
- var ActivityWrapper = styled.div(_templateObject3$t || (_templateObject3$t = _taggedTemplateLiteral(["\n display: flex;\n position: absolute;\n right: 15px;\n top: 15px;\n"])));
13660
- var ActivityComponent = styled.div(_templateObject4$o || (_templateObject4$o = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n justify-content: space-between;\n padding: 4px 8px;\n width: max-content;\n height: 28px;\n background: rgba(55, 55, 73, 0.5);\n backdrop-filter: blur(53px);\n border-radius: 10px;\n margin-left: 8px;\n"])));
13661
- var ProjectNameColumn = styled.div(_templateObject5$m || (_templateObject5$m = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: flex-start;\n"])));
13662
- var ProjectName = styled(Text)(_templateObject6$g || (_templateObject6$g = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 32px;\n line-height: 130%;\n ", " {\n font-size: 24px;\n }\n"])), function (_ref3) {
13658
+ var ActivityDescription = styledComponents.styled(Text)(_templateObject2$z || (_templateObject2$z = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 14px;\n line-height: 140%;\n width: max-content;\n"])));
13659
+ var ActivityWrapper = styledComponents.styled.div(_templateObject3$t || (_templateObject3$t = _taggedTemplateLiteral(["\n display: flex;\n position: absolute;\n right: 15px;\n top: 15px;\n"])));
13660
+ var ActivityComponent = styledComponents.styled.div(_templateObject4$o || (_templateObject4$o = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n justify-content: space-between;\n padding: 4px 8px;\n width: max-content;\n height: 28px;\n background: rgba(55, 55, 73, 0.5);\n backdrop-filter: blur(53px);\n border-radius: 10px;\n margin-left: 8px;\n"])));
13661
+ var ProjectNameColumn = styledComponents.styled.div(_templateObject5$m || (_templateObject5$m = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: flex-start;\n"])));
13662
+ var ProjectName = styledComponents.styled(Text)(_templateObject6$g || (_templateObject6$g = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 32px;\n line-height: 130%;\n ", " {\n font-size: 24px;\n }\n"])), function (_ref3) {
13663
13663
  var theme = _ref3.theme;
13664
13664
  return theme.mediaQueries.mobile;
13665
13665
  });
13666
- var ProjectTicker = styled(Text)(_templateObject7$c || (_templateObject7$c = _taggedTemplateLiteral(["\n font-size: 14px;\n line-height: 170%;\n text-align: right;\n letter-spacing: 0.03em;\n font-weight: bold;\n color: #535459;\n ", ";\n"])), function (_ref4) {
13666
+ var ProjectTicker = styledComponents.styled(Text)(_templateObject7$c || (_templateObject7$c = _taggedTemplateLiteral(["\n font-size: 14px;\n line-height: 170%;\n text-align: right;\n letter-spacing: 0.03em;\n font-weight: bold;\n color: #535459;\n ", ";\n"])), function (_ref4) {
13667
13667
  var customStyle = _ref4.customStyle;
13668
13668
  return customStyle;
13669
13669
  });
13670
- var TimerDescription = styled(Text)(_templateObject8$9 || (_templateObject8$9 = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 14px;\n line-height: 170%;\n color: #818c92;\n"])));
13671
- var Timer = styled(Text)(_templateObject9$8 || (_templateObject9$8 = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 32px;\n line-height: 130%;\n color: ", ";\n ", " {\n font-size: 24px;\n }\n"])), function (_ref5) {
13670
+ var TimerDescription = styledComponents.styled(Text)(_templateObject8$9 || (_templateObject8$9 = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 14px;\n line-height: 170%;\n color: #818c92;\n"])));
13671
+ var Timer = styledComponents.styled(Text)(_templateObject9$8 || (_templateObject9$8 = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 32px;\n line-height: 130%;\n color: ", ";\n ", " {\n font-size: 24px;\n }\n"])), function (_ref5) {
13672
13672
  var isIncoming = _ref5.isIncoming;
13673
13673
  return isIncoming ? "#FF7342" : "#12ffb8";
13674
13674
  }, function (_ref6) {
13675
13675
  var theme = _ref6.theme;
13676
13676
  return theme.mediaQueries.mobile;
13677
13677
  });
13678
- var RatioColumn = styled.div(_templateObject0$6 || (_templateObject0$6 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n align-items: flex-end;\n"])));
13679
- var DetailsRow = styled.div(_templateObject1$6 || (_templateObject1$6 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n align-items: flex-start;\n justify-content: space-between;\n width: 100%;\n"])));
13678
+ var RatioColumn = styledComponents.styled.div(_templateObject0$6 || (_templateObject0$6 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n align-items: flex-end;\n"])));
13679
+ var DetailsRow = styledComponents.styled.div(_templateObject1$6 || (_templateObject1$6 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n align-items: flex-start;\n justify-content: space-between;\n width: 100%;\n"])));
13680
13680
  // Details components
13681
- var SpaceInfoTableWrapper = styled.div(_templateObject10$5 || (_templateObject10$5 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n width: 100%;\n"])));
13682
- var SpaceInfoTableRow = styled.div(_templateObject11$5 || (_templateObject11$5 = _taggedTemplateLiteral(["\n display: flex;\n align-items: flex-start;\n justify-content: space-between;\n padding: 11px 0px;\n border-bottom: ", ";\n"])), function (_ref7) {
13681
+ var SpaceInfoTableWrapper = styledComponents.styled.div(_templateObject10$5 || (_templateObject10$5 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n width: 100%;\n"])));
13682
+ var SpaceInfoTableRow = styledComponents.styled.div(_templateObject11$5 || (_templateObject11$5 = _taggedTemplateLiteral(["\n display: flex;\n align-items: flex-start;\n justify-content: space-between;\n padding: 11px 0px;\n border-bottom: ", ";\n"])), function (_ref7) {
13683
13683
  var underlined = _ref7.underlined;
13684
13684
  return underlined && "1px solid #272730";
13685
13685
  });
13686
- var RowTitle = styled(Text)(_templateObject12$4 || (_templateObject12$4 = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 14px;\n line-height: 170%;\n color: #818c92;\n"])));
13687
- var RowValue = styled(Text)(_templateObject13$2 || (_templateObject13$2 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n font-weight: 600;\n font-size: 16px;\n line-height: 24px;\n color: #ffffff;\n"])));
13686
+ var RowTitle = styledComponents.styled(Text)(_templateObject12$4 || (_templateObject12$4 = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 14px;\n line-height: 170%;\n color: #818c92;\n"])));
13687
+ var RowValue = styledComponents.styled(Text)(_templateObject13$2 || (_templateObject13$2 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n font-weight: 600;\n font-size: 16px;\n line-height: 24px;\n color: #ffffff;\n"])));
13688
13688
  var SpacePadInfoRow = function SpacePadInfoRow(props) {
13689
13689
  var title = props.title,
13690
13690
  value = props.value,
@@ -13807,32 +13807,32 @@ var getPreciseRatio = function getPreciseRatio(ratio) {
13807
13807
  };
13808
13808
 
13809
13809
  var _templateObject$H, _templateObject2$y, _templateObject3$s, _templateObject4$n, _templateObject5$l, _templateObject6$f, _templateObject7$b, _templateObject8$8, _templateObject9$7, _templateObject0$5, _templateObject1$5;
13810
- var SpacePadProjectDetailsWrapper = styled.div(_templateObject$H || (_templateObject$H = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n"])));
13811
- var StyledDetailsHeader = styled.div(_templateObject2$y || (_templateObject2$y = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n width: 100%;\n margin-bottom: 32px;\n ", " {\n flex-direction: column-reverse;\n align-items: flex-start;\n justify-content: space-between;\n margin-bottom: 16px;\n }\n"])), function (_ref) {
13810
+ var SpacePadProjectDetailsWrapper = styledComponents.styled.div(_templateObject$H || (_templateObject$H = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n"])));
13811
+ var StyledDetailsHeader = styledComponents.styled.div(_templateObject2$y || (_templateObject2$y = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n width: 100%;\n margin-bottom: 32px;\n ", " {\n flex-direction: column-reverse;\n align-items: flex-start;\n justify-content: space-between;\n margin-bottom: 16px;\n }\n"])), function (_ref) {
13812
13812
  var theme = _ref.theme;
13813
13813
  return theme.mediaQueries.mobile;
13814
13814
  });
13815
- var StyledDetails = styled.div(_templateObject3$s || (_templateObject3$s = _taggedTemplateLiteral(["\n display: grid;\n grid-template-columns: repeat(2, 1fr);\n grid-gap: 32px;\n height: max-content;\n ", " {\n display: flex;\n flex-direction: column;\n }\n"])), function (_ref2) {
13815
+ var StyledDetails = styledComponents.styled.div(_templateObject3$s || (_templateObject3$s = _taggedTemplateLiteral(["\n display: grid;\n grid-template-columns: repeat(2, 1fr);\n grid-gap: 32px;\n height: max-content;\n ", " {\n display: flex;\n flex-direction: column;\n }\n"])), function (_ref2) {
13816
13816
  var theme = _ref2.theme;
13817
13817
  return theme.mediaQueries.mobile;
13818
13818
  });
13819
- var ProjectLogo$1 = styled.div(_templateObject4$n || (_templateObject4$n = _taggedTemplateLiteral(["\n display: flex;\n justify-content: center;\n align-items: center;\n width: 80px;\n height: 80px;\n border-radius: 50%;\n background: #16161d;\n background-image: ", ";\n background-position: center; /* Center the image */\n background-repeat: no-repeat; /* Do not repeat the image */\n background-size: cover;\n border: 3px solid #373749;\n overflow: hidden;\n margin-right: 16px;\n"])), function (_ref3) {
13819
+ var ProjectLogo$1 = styledComponents.styled.div(_templateObject4$n || (_templateObject4$n = _taggedTemplateLiteral(["\n display: flex;\n justify-content: center;\n align-items: center;\n width: 80px;\n height: 80px;\n border-radius: 50%;\n background: #16161d;\n background-image: ", ";\n background-position: center; /* Center the image */\n background-repeat: no-repeat; /* Do not repeat the image */\n background-size: cover;\n border: 3px solid #373749;\n overflow: hidden;\n margin-right: 16px;\n"])), function (_ref3) {
13820
13820
  var background = _ref3.background;
13821
13821
  return background;
13822
13822
  });
13823
- var TimerWrapper = styled.div(_templateObject5$l || (_templateObject5$l = _taggedTemplateLiteral(["\n position: relative;\n display: flex;\n flex-direction: row;\n align-items: center;\n ", " {\n flex-direction: column;\n align-items: flex-start;\n margin-bottom: 44px;\n }\n"])), function (_ref4) {
13823
+ var TimerWrapper = styledComponents.styled.div(_templateObject5$l || (_templateObject5$l = _taggedTemplateLiteral(["\n position: relative;\n display: flex;\n flex-direction: row;\n align-items: center;\n ", " {\n flex-direction: column;\n align-items: flex-start;\n margin-bottom: 44px;\n }\n"])), function (_ref4) {
13824
13824
  var theme = _ref4.theme;
13825
13825
  return theme.mediaQueries.mobile;
13826
13826
  });
13827
- var ProjectNameData = styled.div(_templateObject6$f || (_templateObject6$f = _taggedTemplateLiteral(["\n display: inline-flex;\n"])));
13828
- var DetailsPoster = styled.div(_templateObject7$b || (_templateObject7$b = _taggedTemplateLiteral(["\n height: 200px;\n width: 100%;\n position: relative;\n background: #16161d;\n background-image: ", ";\n background-position: center; /* Center the image */\n background-repeat: no-repeat; /* Do not repeat the image */\n background-size: cover;\n border-radius: 16px;\n"])), function (_ref5) {
13827
+ var ProjectNameData = styledComponents.styled.div(_templateObject6$f || (_templateObject6$f = _taggedTemplateLiteral(["\n display: inline-flex;\n"])));
13828
+ var DetailsPoster = styledComponents.styled.div(_templateObject7$b || (_templateObject7$b = _taggedTemplateLiteral(["\n height: 200px;\n width: 100%;\n position: relative;\n background: #16161d;\n background-image: ", ";\n background-position: center; /* Center the image */\n background-repeat: no-repeat; /* Do not repeat the image */\n background-size: cover;\n border-radius: 16px;\n"])), function (_ref5) {
13829
13829
  var background = _ref5.background;
13830
13830
  return background;
13831
13831
  });
13832
- var StyledDetailsDescriptionColumn = styled.div(_templateObject8$8 || (_templateObject8$8 = _taggedTemplateLiteral(["\n position: relative;\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n"])));
13833
- var DetailsSpacer = styled.div(_templateObject9$7 || (_templateObject9$7 = _taggedTemplateLiteral(["\n width: 100%;\n height: 1px;\n background: #272730;\n margin: 16px 0px;\n"])));
13834
- var ParticipantsRow = styled(DetailsRow)(_templateObject0$5 || (_templateObject0$5 = _taggedTemplateLiteral(["\n position: absolute;\n bottom: -40px;\n"])));
13835
- var IdoEventTimestamp = styled.div(_templateObject1$5 || (_templateObject1$5 = _taggedTemplateLiteral(["\n position: absolute;\n font-weight: 500;\n font-size: 12px;\n line-height: 170%;\n color: #535459;\n right: 0px;\n bottom: -20px;\n ", " {\n left: 0px;\n }\n"])), function (_ref6) {
13832
+ var StyledDetailsDescriptionColumn = styledComponents.styled.div(_templateObject8$8 || (_templateObject8$8 = _taggedTemplateLiteral(["\n position: relative;\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n"])));
13833
+ var DetailsSpacer = styledComponents.styled.div(_templateObject9$7 || (_templateObject9$7 = _taggedTemplateLiteral(["\n width: 100%;\n height: 1px;\n background: #272730;\n margin: 16px 0px;\n"])));
13834
+ var ParticipantsRow = styledComponents.styled(DetailsRow)(_templateObject0$5 || (_templateObject0$5 = _taggedTemplateLiteral(["\n position: absolute;\n bottom: -40px;\n"])));
13835
+ var IdoEventTimestamp = styledComponents.styled.div(_templateObject1$5 || (_templateObject1$5 = _taggedTemplateLiteral(["\n position: absolute;\n font-weight: 500;\n font-size: 12px;\n line-height: 170%;\n color: #535459;\n right: 0px;\n bottom: -20px;\n ", " {\n left: 0px;\n }\n"])), function (_ref6) {
13836
13836
  var theme = _ref6.theme;
13837
13837
  return theme.mediaQueries.mobile;
13838
13838
  });
@@ -13959,46 +13959,46 @@ var SpacePadProjectDetails = function SpacePadProjectDetails(props) {
13959
13959
  };
13960
13960
 
13961
13961
  var _templateObject$G, _templateObject2$x, _templateObject3$r, _templateObject4$m, _templateObject5$k, _templateObject6$e, _templateObject7$a, _templateObject8$7, _templateObject9$6;
13962
- var WalletWrapper = styled.div(_templateObject$G || (_templateObject$G = _taggedTemplateLiteral(["\n display: flex;\n width: 100%;\n height: 129px;\n background: ", ";\n border: 1px solid ", ";\n border-radius: 10px;\n justify-content: space-around;\n flex-direction: column;\n padding: 12px 16px 34px 16px;\n"])), function (_ref) {
13962
+ var WalletWrapper = styledComponents.styled.div(_templateObject$G || (_templateObject$G = _taggedTemplateLiteral(["\n display: flex;\n width: 100%;\n height: 129px;\n background: ", ";\n border: 1px solid ", ";\n border-radius: 10px;\n justify-content: space-around;\n flex-direction: column;\n padding: 12px 16px 34px 16px;\n"])), function (_ref) {
13963
13963
  var theme = _ref.theme;
13964
13964
  return theme.backgrounds.secondary;
13965
13965
  }, function (_ref2) {
13966
13966
  var theme = _ref2.theme;
13967
13967
  return theme.colors.white3;
13968
13968
  });
13969
- styled.div(_templateObject2$x || (_templateObject2$x = _taggedTemplateLiteral(["\n display: flex;\n width: 100%;\n height: 100%;\n justify-content: space-between;\n align-items: flex-start;\n flex-direction: column;\n flex: 2;\n"])));
13970
- styled.div(_templateObject3$r || (_templateObject3$r = _taggedTemplateLiteral(["\n position: relative;\n width: 100%;\n height: 30px;\n background: ", ";\n display: flex;\n justify-content: flex-start;\n align-items: center;\n border-radius: 7px;\n border: 1px solid ", ";\n box-sizing: border-box;\n padding: 3px;\n"])), function (_ref3) {
13969
+ styledComponents.styled.div(_templateObject2$x || (_templateObject2$x = _taggedTemplateLiteral(["\n display: flex;\n width: 100%;\n height: 100%;\n justify-content: space-between;\n align-items: flex-start;\n flex-direction: column;\n flex: 2;\n"])));
13970
+ styledComponents.styled.div(_templateObject3$r || (_templateObject3$r = _taggedTemplateLiteral(["\n position: relative;\n width: 100%;\n height: 30px;\n background: ", ";\n display: flex;\n justify-content: flex-start;\n align-items: center;\n border-radius: 7px;\n border: 1px solid ", ";\n box-sizing: border-box;\n padding: 3px;\n"])), function (_ref3) {
13971
13971
  var theme = _ref3.theme;
13972
13972
  return theme.colors.dark;
13973
13973
  }, function (_ref4) {
13974
13974
  var theme = _ref4.theme;
13975
13975
  return theme.colors.white3;
13976
13976
  });
13977
- styled.div(_templateObject4$m || (_templateObject4$m = _taggedTemplateLiteral(["\n position: relative;\n height: 100%;\n width: ", "%;\n font-size: 14px;\n background: ", ";\n border-radius: 7px;\n"])), function (_ref5) {
13977
+ styledComponents.styled.div(_templateObject4$m || (_templateObject4$m = _taggedTemplateLiteral(["\n position: relative;\n height: 100%;\n width: ", "%;\n font-size: 14px;\n background: ", ";\n border-radius: 7px;\n"])), function (_ref5) {
13978
13978
  var width = _ref5.width;
13979
13979
  return width;
13980
13980
  }, function (_ref6) {
13981
13981
  var theme = _ref6.theme;
13982
13982
  return theme.colors.grey;
13983
13983
  });
13984
- styled.div(_templateObject5$k || (_templateObject5$k = _taggedTemplateLiteral(["\n position: absolute;\n color: ", ";\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n font-weight: bold;\n display: inline-block;\n width: 100%;\n text-align: center;\n"])), function (_ref7) {
13984
+ styledComponents.styled.div(_templateObject5$k || (_templateObject5$k = _taggedTemplateLiteral(["\n position: absolute;\n color: ", ";\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n font-weight: bold;\n display: inline-block;\n width: 100%;\n text-align: center;\n"])), function (_ref7) {
13985
13985
  var theme = _ref7.theme;
13986
13986
  return theme.colors.white;
13987
13987
  });
13988
- var Description$1 = styled.div(_templateObject6$e || (_templateObject6$e = _taggedTemplateLiteral(["\n display: flex;\n font-size: 12px;\n line-height: 2;\n color: ", ";\n align-items: flex-start;\n font-weight: normal;\n"])), function (_ref8) {
13988
+ var Description$1 = styledComponents.styled.div(_templateObject6$e || (_templateObject6$e = _taggedTemplateLiteral(["\n display: flex;\n font-size: 12px;\n line-height: 2;\n color: ", ";\n align-items: flex-start;\n font-weight: normal;\n"])), function (_ref8) {
13989
13989
  var theme = _ref8.theme;
13990
13990
  return theme.colors.white55;
13991
13991
  });
13992
- var Title = styled(Description$1)(_templateObject7$a || (_templateObject7$a = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 14px;\n flex-direction: row;\n"])));
13992
+ var Title = styledComponents.styled(Description$1)(_templateObject7$a || (_templateObject7$a = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 14px;\n flex-direction: row;\n"])));
13993
13993
  // We need to implement it in such a way until walletCap per wallet wont be implemented
13994
- var DescriptionWrapper = styled.div(_templateObject8$7 || (_templateObject8$7 = _taggedTemplateLiteral(["\n color: ", ";\n line-height: 2;\n display: flex;\n flex-direction: column;\n font-weight: bold;\n font-size: 14px;\n flex: 1;\n border-right: ", ";\n margin-right: 24px;\n"])), function (_ref9) {
13994
+ var DescriptionWrapper = styledComponents.styled.div(_templateObject8$7 || (_templateObject8$7 = _taggedTemplateLiteral(["\n color: ", ";\n line-height: 2;\n display: flex;\n flex-direction: column;\n font-weight: bold;\n font-size: 14px;\n flex: 1;\n border-right: ", ";\n margin-right: 24px;\n"])), function (_ref9) {
13995
13995
  var theme = _ref9.theme;
13996
13996
  return theme.colors.white;
13997
13997
  }, function (_ref0) {
13998
13998
  var withoutBorder = _ref0.withoutBorder;
13999
13999
  return withoutBorder ? "none" : "1px solid #252530";
14000
14000
  });
14001
- var DetailsWrapper = styled.div(_templateObject9$6 || (_templateObject9$6 = _taggedTemplateLiteral(["\n display: flex;\n height: 50px;\n flex-direction: row;\n"])));
14001
+ var DetailsWrapper = styledComponents.styled.div(_templateObject9$6 || (_templateObject9$6 = _taggedTemplateLiteral(["\n display: flex;\n height: 50px;\n flex-direction: row;\n"])));
14002
14002
  var WalletCap = function WalletCap(_ref1) {
14003
14003
  _ref1.currentWalletCap;
14004
14004
  var _ref1$softCap = _ref1.softCap,
@@ -14030,7 +14030,7 @@ var WalletCap = function WalletCap(_ref1) {
14030
14030
  };
14031
14031
 
14032
14032
  var _templateObject$F, _templateObject2$w, _templateObject3$q;
14033
- var TooltipContent = styled.div(_templateObject$F || (_templateObject$F = _taggedTemplateLiteral(["\n background: ", ";\n padding: 16px;\n border-radius: 10px;\n border: 1px solid ", ";\n box-shadow: 0px 13px 20px rgba(0, 0, 0, 0.25);\n color: ", ";\n width: max-content;\n min-width: 200px;\n display: none;\n max-height: 500px;\n z-index: 9999999;\n position: absolute;\n bottom: calc(100% + 16px);\n transform: translate(34px, 0);\n right: ", "px;\n font-size: ", "px;\n\n ", "\n"])), function (_ref) {
14033
+ var TooltipContent = styledComponents.styled.div(_templateObject$F || (_templateObject$F = _taggedTemplateLiteral(["\n background: ", ";\n padding: 16px;\n border-radius: 10px;\n border: 1px solid ", ";\n box-shadow: 0px 13px 20px rgba(0, 0, 0, 0.25);\n color: ", ";\n width: max-content;\n min-width: 200px;\n display: none;\n max-height: 500px;\n z-index: 9999999;\n position: absolute;\n bottom: calc(100% + 16px);\n transform: translate(34px, 0);\n right: ", "px;\n font-size: ", "px;\n\n ", "\n"])), function (_ref) {
14034
14034
  var theme = _ref.theme;
14035
14035
  return theme.colors.card;
14036
14036
  }, function (_ref2) {
@@ -14045,12 +14045,12 @@ var TooltipContent = styled.div(_templateObject$F || (_templateObject$F = _tagge
14045
14045
  }, function (props) {
14046
14046
  return props.small ? 12 : "";
14047
14047
  }, function (props) {
14048
- return !props.removeAfter && styled.css(_templateObject2$w || (_templateObject2$w = _taggedTemplateLiteral(["\n &:after {\n content: \"\";\n display: block;\n width: 0;\n height: 0;\n border-left: 10px solid transparent;\n border-right: 10px solid transparent;\n border-top: 10px solid ", ";\n bottom: ", "px;\n position: absolute;\n transform: translate(-34px, 9px);\n right: 0;\n }\n "])), function (_ref5) {
14048
+ return !props.removeAfter && styledComponents.css(_templateObject2$w || (_templateObject2$w = _taggedTemplateLiteral(["\n &:after {\n content: \"\";\n display: block;\n width: 0;\n height: 0;\n border-left: 10px solid transparent;\n border-right: 10px solid transparent;\n border-top: 10px solid ", ";\n bottom: ", "px;\n position: absolute;\n transform: translate(-34px, 9px);\n right: 0;\n }\n "])), function (_ref5) {
14049
14049
  var theme = _ref5.theme;
14050
14050
  return theme.tooltip.background;
14051
14051
  }, props.bottom || 0);
14052
14052
  });
14053
- var Container$3 = styled.div(_templateObject3$q || (_templateObject3$q = _taggedTemplateLiteral(["\n position: relative;\n z-index: 99999999999;\n\n &:hover ", ", &:focus-within ", " {\n display: block;\n }\n"])), TooltipContent, TooltipContent);
14053
+ var Container$3 = styledComponents.styled.div(_templateObject3$q || (_templateObject3$q = _taggedTemplateLiteral(["\n position: relative;\n z-index: 99999999999;\n\n &:hover ", ", &:focus-within ", " {\n display: block;\n }\n"])), TooltipContent, TooltipContent);
14054
14054
  var Tooltip = function Tooltip(_ref6) {
14055
14055
  var content = _ref6.content,
14056
14056
  children = _ref6.children,
@@ -14076,30 +14076,30 @@ var Tooltip = function Tooltip(_ref6) {
14076
14076
  };
14077
14077
 
14078
14078
  var _templateObject$E, _templateObject2$v, _templateObject3$p, _templateObject4$l, _templateObject5$j, _templateObject6$d, _templateObject7$9, _templateObject8$6, _templateObject9$5;
14079
- var CSSPowerWrapper = styled.div(_templateObject$E || (_templateObject$E = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n background: #252530;\n border: 1px solid ", ";\n padding: 16px 24px;\n border-radius: 10px;\n ", " {\n width: 100%;\n align-items: center;\n margin-top: 24px;\n }\n"])), function (_ref) {
14079
+ var CSSPowerWrapper = styledComponents.styled.div(_templateObject$E || (_templateObject$E = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n background: #252530;\n border: 1px solid ", ";\n padding: 16px 24px;\n border-radius: 10px;\n ", " {\n width: 100%;\n align-items: center;\n margin-top: 24px;\n }\n"])), function (_ref) {
14080
14080
  var theme = _ref.theme;
14081
14081
  return theme.colors.white3;
14082
14082
  }, function (_ref2) {
14083
14083
  var theme = _ref2.theme;
14084
14084
  return theme.mediaQueries.tablet;
14085
14085
  });
14086
- var PowerWrapper = styled.div(_templateObject2$v || (_templateObject2$v = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n align-items: flex-end;\n justify-content: space-between;\n margin-left: 30px;\n"])));
14087
- var CSSPowerText = styled(Text)(_templateObject3$p || (_templateObject3$p = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n font-weight: bold;\n font-size: 14px;\n line-height: 140%;\n color: ", ";\n width: max-content;\n"])), function (_ref3) {
14086
+ var PowerWrapper = styledComponents.styled.div(_templateObject2$v || (_templateObject2$v = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n align-items: flex-end;\n justify-content: space-between;\n margin-left: 30px;\n"])));
14087
+ var CSSPowerText = styledComponents.styled(Text)(_templateObject3$p || (_templateObject3$p = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n font-weight: bold;\n font-size: 14px;\n line-height: 140%;\n color: ", ";\n width: max-content;\n"])), function (_ref3) {
14088
14088
  var theme = _ref3.theme;
14089
14089
  return theme.colors.white55;
14090
14090
  });
14091
- var CSSPowerValue = styled(Text)(_templateObject4$l || (_templateObject4$l = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 36px;\n line-height: 130%;\n color: ", ";\n"])), function (_ref4) {
14091
+ var CSSPowerValue = styledComponents.styled(Text)(_templateObject4$l || (_templateObject4$l = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 36px;\n line-height: 130%;\n color: ", ";\n"])), function (_ref4) {
14092
14092
  var theme = _ref4.theme;
14093
14093
  return theme.colors.white;
14094
14094
  });
14095
- var StyledInfoIcon = styled(Icon$2E)(_templateObject5$j || (_templateObject5$j = _taggedTemplateLiteral(["\n margin-left: 5px;\n height: 18px;\n cursor: pointer;\n"])));
14096
- var PowerDescriptionWrapper = styled.div(_templateObject6$d || (_templateObject6$d = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n"])));
14097
- var PowerTitle = styled(Text)(_templateObject7$9 || (_templateObject7$9 = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 14px;\n line-height: 140%;\n"])));
14098
- var PowerAmount = styled(Text)(_templateObject8$6 || (_templateObject8$6 = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 14px;\n line-height: 140%;\n color: ", ";\n margin-left: 30px;\n"])), function (_ref5) {
14095
+ var StyledInfoIcon = styledComponents.styled(Icon$2E)(_templateObject5$j || (_templateObject5$j = _taggedTemplateLiteral(["\n margin-left: 5px;\n height: 18px;\n cursor: pointer;\n"])));
14096
+ var PowerDescriptionWrapper = styledComponents.styled.div(_templateObject6$d || (_templateObject6$d = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n"])));
14097
+ var PowerTitle = styledComponents.styled(Text)(_templateObject7$9 || (_templateObject7$9 = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 14px;\n line-height: 140%;\n"])));
14098
+ var PowerAmount = styledComponents.styled(Text)(_templateObject8$6 || (_templateObject8$6 = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 14px;\n line-height: 140%;\n color: ", ";\n margin-left: 30px;\n"])), function (_ref5) {
14099
14099
  var theme = _ref5.theme;
14100
14100
  return theme.colors.white55;
14101
14101
  });
14102
- var PowerLine = styled.div(_templateObject9$5 || (_templateObject9$5 = _taggedTemplateLiteral(["\n display: flex;\n flex: direction: row;\n justify-content: space-between;\n margin-bottom: ", "px;\n"])), function (_ref6) {
14102
+ var PowerLine = styledComponents.styled.div(_templateObject9$5 || (_templateObject9$5 = _taggedTemplateLiteral(["\n display: flex;\n flex: direction: row;\n justify-content: space-between;\n margin-bottom: ", "px;\n"])), function (_ref6) {
14103
14103
  var mb = _ref6.mb;
14104
14104
  return mb || 0;
14105
14105
  });
@@ -14153,7 +14153,7 @@ var CSSPower = function CSSPower(_ref7) {
14153
14153
 
14154
14154
  var _excluded$4 = ["value", "onUserInput", "placeholder", "type"];
14155
14155
  var _templateObject$D;
14156
- var StyledInput = styled.input(_templateObject$D || (_templateObject$D = _taggedTemplateLiteral(["\n color: ", ";\n width: 0;\n position: relative;\n font-weight: 700;\n outline: none;\n border: none;\n flex: 1 1 auto;\n background-color: transparent;\n background: transparent;\n font-size: 24px;\n text-align: ", ";\n white-space: nowrap;\n line-height: 33px;\n overflow: hidden;\n text-overflow: ellipsis;\n padding: 0px;\n -webkit-appearance: textfield;\n\n ::-webkit-search-decoration {\n -webkit-appearance: none;\n }\n\n [type=\"number\"] {\n -moz-appearance: textfield;\n }\n\n ::-webkit-outer-spin-button,\n ::-webkit-inner-spin-button {\n -webkit-appearance: none;\n }\n\n ::placeholder {\n color: ", ";\n }\n"])), function (_ref) {
14156
+ var StyledInput = styledComponents.styled.input(_templateObject$D || (_templateObject$D = _taggedTemplateLiteral(["\n color: ", ";\n width: 0;\n position: relative;\n font-weight: 700;\n outline: none;\n border: none;\n flex: 1 1 auto;\n background-color: transparent;\n background: transparent;\n font-size: 24px;\n text-align: ", ";\n white-space: nowrap;\n line-height: 33px;\n overflow: hidden;\n text-overflow: ellipsis;\n padding: 0px;\n -webkit-appearance: textfield;\n\n ::-webkit-search-decoration {\n -webkit-appearance: none;\n }\n\n [type=\"number\"] {\n -moz-appearance: textfield;\n }\n\n ::-webkit-outer-spin-button,\n ::-webkit-inner-spin-button {\n -webkit-appearance: none;\n }\n\n ::placeholder {\n color: ", ";\n }\n"])), function (_ref) {
14157
14157
  var error = _ref.error,
14158
14158
  theme = _ref.theme;
14159
14159
  return error ? theme.colors.failure : theme.colors.text;
@@ -14200,7 +14200,7 @@ var NumericalInput = /*#__PURE__*/React.memo(function InnerInput(_ref4) {
14200
14200
  });
14201
14201
 
14202
14202
  var _templateObject$C, _templateObject2$u, _templateObject3$o, _templateObject4$k, _templateObject5$i, _templateObject6$c, _templateObject7$8, _templateObject8$5, _templateObject9$4, _templateObject0$4, _templateObject1$4, _templateObject10$4, _templateObject11$4, _templateObject12$3;
14203
- var SpacePadDatesWrapper = styled.div(_templateObject$C || (_templateObject$C = _taggedTemplateLiteral(["\n display: flex;\n width: 100%;\n background: ", ";\n border: 1px solid ", ";\n border-radius: 10px;\n padding: 16px 24px;\n align-items: center;\n justify-content: space-between;\n ", " {\n flex-direction: column;\n align-items: flex-start;\n }\n"])), function (_ref) {
14203
+ var SpacePadDatesWrapper = styledComponents.styled.div(_templateObject$C || (_templateObject$C = _taggedTemplateLiteral(["\n display: flex;\n width: 100%;\n background: ", ";\n border: 1px solid ", ";\n border-radius: 10px;\n padding: 16px 24px;\n align-items: center;\n justify-content: space-between;\n ", " {\n flex-direction: column;\n align-items: flex-start;\n }\n"])), function (_ref) {
14204
14204
  var theme = _ref.theme;
14205
14205
  return theme.backgrounds.secondary;
14206
14206
  }, function (_ref2) {
@@ -14210,7 +14210,7 @@ var SpacePadDatesWrapper = styled.div(_templateObject$C || (_templateObject$C =
14210
14210
  var theme = _ref3.theme;
14211
14211
  return theme.mediaQueries.mobile;
14212
14212
  });
14213
- var ActiveDot = styled.div(_templateObject2$u || (_templateObject2$u = _taggedTemplateLiteral(["\n height: 16px;\n width: 16px;\n border-radius: 50%;\n background: ", ";\n margin-right: ", "px;\n ", "\n"])), function (_ref4) {
14213
+ var ActiveDot = styledComponents.styled.div(_templateObject2$u || (_templateObject2$u = _taggedTemplateLiteral(["\n height: 16px;\n width: 16px;\n border-radius: 50%;\n background: ", ";\n margin-right: ", "px;\n ", "\n"])), function (_ref4) {
14214
14214
  var color = _ref4.color;
14215
14215
  return color;
14216
14216
  }, function (_ref5) {
@@ -14220,45 +14220,45 @@ var ActiveDot = styled.div(_templateObject2$u || (_templateObject2$u = _taggedTe
14220
14220
  var fetchingData = _ref6.fetchingData;
14221
14221
  return fetchingData && "\n transition: all 0.25s ease-in-out;\n animation: stretch 2s infinite;\n @keyframes stretch {\n 0% {\n transform: scale(1);\n }\n 25% {\n transform: scale(0.9);\n }\n 50% {\n transform: scale(1.2);\n }\n 75% {\n transform: scale(0.9);\n }\n 100% {\n transform: scale(1);\n }\n }\n ";
14222
14222
  });
14223
- var TimeWrapper = styled.div(_templateObject3$o || (_templateObject3$o = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n align-items: center;\n ", " {\n flex-direction: column;\n align-items: flex-start;\n margin-bottom: 21px;\n }\n"])), function (_ref7) {
14223
+ var TimeWrapper = styledComponents.styled.div(_templateObject3$o || (_templateObject3$o = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n align-items: center;\n ", " {\n flex-direction: column;\n align-items: flex-start;\n margin-bottom: 21px;\n }\n"])), function (_ref7) {
14224
14224
  var theme = _ref7.theme;
14225
14225
  return theme.mediaQueries.mobile;
14226
14226
  });
14227
- var EndTimeWrapper = styled.div(_templateObject4$k || (_templateObject4$k = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n align-items: flex-start;\n height: 41px;\n"])));
14228
- var TimeNumber = styled(Text)(_templateObject5$i || (_templateObject5$i = _taggedTemplateLiteral(["\n font-weight: 600;\n font-size: 20px;\n margin: 0px;\n padding: 0px;\n height: 100%;\n line-height: 100%;\n"])));
14229
- var PeriodText = styled(Text)(_templateObject6$c || (_templateObject6$c = _taggedTemplateLiteral(["\n font-weight: 600;\n font-size: 16px;\n margin-right: 0px;\n padding: 0px;\n color: ", ";\n height: 100%;\n // Temporarly\n line-height: 17px;\n"])), function (_ref8) {
14227
+ var EndTimeWrapper = styledComponents.styled.div(_templateObject4$k || (_templateObject4$k = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n align-items: flex-start;\n height: 41px;\n"])));
14228
+ var TimeNumber = styledComponents.styled(Text)(_templateObject5$i || (_templateObject5$i = _taggedTemplateLiteral(["\n font-weight: 600;\n font-size: 20px;\n margin: 0px;\n padding: 0px;\n height: 100%;\n line-height: 100%;\n"])));
14229
+ var PeriodText = styledComponents.styled(Text)(_templateObject6$c || (_templateObject6$c = _taggedTemplateLiteral(["\n font-weight: 600;\n font-size: 16px;\n margin-right: 0px;\n padding: 0px;\n color: ", ";\n height: 100%;\n // Temporarly\n line-height: 17px;\n"])), function (_ref8) {
14230
14230
  var theme = _ref8.theme;
14231
14231
  return theme.colors.primary;
14232
14232
  });
14233
- var DetailedTimeWrapper = styled.div(_templateObject7$8 || (_templateObject7$8 = _taggedTemplateLiteral(["\n width: 150px;\n display: flex;\n flex-direction: row;\n align-items: flex-end;\n justify-content: space-between;\n color: ", ";\n font-size: 20px;\n font-weight: bold;\n"])), function (_ref9) {
14233
+ var DetailedTimeWrapper = styledComponents.styled.div(_templateObject7$8 || (_templateObject7$8 = _taggedTemplateLiteral(["\n width: 150px;\n display: flex;\n flex-direction: row;\n align-items: flex-end;\n justify-content: space-between;\n color: ", ";\n font-size: 20px;\n font-weight: bold;\n"])), function (_ref9) {
14234
14234
  var theme = _ref9.theme;
14235
14235
  return theme.colors.white30;
14236
14236
  });
14237
- var TimeValues = styled.div(_templateObject8$5 || (_templateObject8$5 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n align-items: flex-end;\n width: 30px;\n"])));
14238
- var DateWrapper = styled.div(_templateObject9$4 || (_templateObject9$4 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n ", " {\n width: 100%;\n justify-content: space-between;\n }\n"])), function (_ref0) {
14237
+ var TimeValues = styledComponents.styled.div(_templateObject8$5 || (_templateObject8$5 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n align-items: flex-end;\n width: 30px;\n"])));
14238
+ var DateWrapper = styledComponents.styled.div(_templateObject9$4 || (_templateObject9$4 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n ", " {\n width: 100%;\n justify-content: space-between;\n }\n"])), function (_ref0) {
14239
14239
  var theme = _ref0.theme;
14240
14240
  return theme.mediaQueries.mobile;
14241
14241
  });
14242
- var ActiveStateWrapper = styled.div(_templateObject0$4 || (_templateObject0$4 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n align-items: center;\n ", " {\n margin-bottom: 17px;\n }\n"])), function (_ref1) {
14242
+ var ActiveStateWrapper = styledComponents.styled.div(_templateObject0$4 || (_templateObject0$4 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n align-items: center;\n ", " {\n margin-bottom: 17px;\n }\n"])), function (_ref1) {
14243
14243
  var theme = _ref1.theme;
14244
14244
  return theme.mediaQueries.mobile;
14245
14245
  });
14246
- var RoundDescription = styled.div(_templateObject1$4 || (_templateObject1$4 = _taggedTemplateLiteral(["\n font-size: 15px;\n color: ", ";\n line-height: 20px;\n margin-top: 3px;\n margin-left: -40px;\n"])), function (_ref10) {
14246
+ var RoundDescription = styledComponents.styled.div(_templateObject1$4 || (_templateObject1$4 = _taggedTemplateLiteral(["\n font-size: 15px;\n color: ", ";\n line-height: 20px;\n margin-top: 3px;\n margin-left: -40px;\n"])), function (_ref10) {
14247
14247
  var theme = _ref10.theme;
14248
14248
  return theme.colors.white55;
14249
14249
  });
14250
- var AcocuntDataWrapper = styled.div(_templateObject10$4 || (_templateObject10$4 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n ", " {\n flex-direction: column;\n align-items: flex-start;\n button {\n width: 100%;\n }\n }\n"])), function (_ref11) {
14250
+ var AcocuntDataWrapper = styledComponents.styled.div(_templateObject10$4 || (_templateObject10$4 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n ", " {\n flex-direction: column;\n align-items: flex-start;\n button {\n width: 100%;\n }\n }\n"])), function (_ref11) {
14251
14251
  var theme = _ref11.theme;
14252
14252
  return theme.mediaQueries.mobile;
14253
14253
  });
14254
- var AccountInfoText$1 = styled(Text)(_templateObject11$4 || (_templateObject11$4 = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 18px;\n line-height: 130%;\n display: flex;\n align-items: center;\n margin-right: 8px;\n ", " {\n font-size: 16px;\n }\n ", " {\n font-size: 14px;\n margin-right: 0px;\n margin-bottom: 16px;\n }\n"])), function (_ref12) {
14254
+ var AccountInfoText$1 = styledComponents.styled(Text)(_templateObject11$4 || (_templateObject11$4 = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 18px;\n line-height: 130%;\n display: flex;\n align-items: center;\n margin-right: 8px;\n ", " {\n font-size: 16px;\n }\n ", " {\n font-size: 14px;\n margin-right: 0px;\n margin-bottom: 16px;\n }\n"])), function (_ref12) {
14255
14255
  var theme = _ref12.theme;
14256
14256
  return theme.mediaQueries.tablet;
14257
14257
  }, function (_ref13) {
14258
14258
  var theme = _ref13.theme;
14259
14259
  return theme.mediaQueries.mobile;
14260
14260
  });
14261
- var TimerText = styled(Text)(_templateObject12$3 || (_templateObject12$3 = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 11px;\n color: ", ";\n strong {\n color: ", ";\n }\n"])), baseColors.white55, baseColors.white);
14261
+ var TimerText = styledComponents.styled(Text)(_templateObject12$3 || (_templateObject12$3 = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 11px;\n color: ", ";\n strong {\n color: ", ";\n }\n"])), baseColors.white55, baseColors.white);
14262
14262
  var SpacePadDates = function SpacePadDates(_ref14) {
14263
14263
  var _ref14$days = _ref14.days,
14264
14264
  days = _ref14$days === void 0 ? "3" : _ref14$days,
@@ -14399,12 +14399,12 @@ var SpacePadDates = function SpacePadDates(_ref14) {
14399
14399
  };
14400
14400
 
14401
14401
  var _templateObject$B, _templateObject2$t, _templateObject3$n, _templateObject4$j, _templateObject5$h, _templateObject6$b, _templateObject7$7, _templateObject8$4, _templateObject9$3, _templateObject0$3, _templateObject1$3, _templateObject10$3, _templateObject11$3, _templateObject12$2, _templateObject13$1;
14402
- var AddToCapWrapper = styled.div(_templateObject$B || (_templateObject$B = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n height: max-content;\n width: 100%;\n padding: 32px;\n background: #191921;\n border-radius: 16px;\n"])));
14403
- var LogicComponentsWrapper = styled.div(_templateObject2$t || (_templateObject2$t = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n ", " {\n flex-direction: column;\n }\n"])), function (_ref) {
14402
+ var AddToCapWrapper = styledComponents.styled.div(_templateObject$B || (_templateObject$B = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n height: max-content;\n width: 100%;\n padding: 32px;\n background: #191921;\n border-radius: 16px;\n"])));
14403
+ var LogicComponentsWrapper = styledComponents.styled.div(_templateObject2$t || (_templateObject2$t = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n ", " {\n flex-direction: column;\n }\n"])), function (_ref) {
14404
14404
  var theme = _ref.theme;
14405
14405
  return theme.mediaQueries.mobile;
14406
14406
  });
14407
- var CapInput = styled(NumericalInput)(_templateObject3$n || (_templateObject3$n = _taggedTemplateLiteral(["\n height: 50px;\n font-size: 16px;\n padding: 11px 0px 11px 24px;\n border: 1px solid ", ";\n background: ", ";\n border-radius: 10px;\n margin-bottom: 20px;\n ::placeholder {\n color: ", ";\n font-weight: 500;\n }\n"])), function (_ref2) {
14407
+ var CapInput = styledComponents.styled(NumericalInput)(_templateObject3$n || (_templateObject3$n = _taggedTemplateLiteral(["\n height: 50px;\n font-size: 16px;\n padding: 11px 0px 11px 24px;\n border: 1px solid ", ";\n background: ", ";\n border-radius: 10px;\n margin-bottom: 20px;\n ::placeholder {\n color: ", ";\n font-weight: 500;\n }\n"])), function (_ref2) {
14408
14408
  var theme = _ref2.theme;
14409
14409
  return theme.colors.white10;
14410
14410
  }, function (_ref3) {
@@ -14414,31 +14414,31 @@ var CapInput = styled(NumericalInput)(_templateObject3$n || (_templateObject3$n
14414
14414
  var theme = _ref4.theme;
14415
14415
  return theme.colors.white55;
14416
14416
  });
14417
- var EligibleWrapper = styled.div(_templateObject4$j || (_templateObject4$j = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n width: max-content;\n height: 50px;\n width: 100%;\n padding: 15.5px;\n //Used only once in this component, not declared on theme\n background: #272730;\n box-sizing: border-box;\n border-radius: 10px;\n margin-bottom: 26px;\n"])));
14418
- var IdoActionButton = styled(Button$1)(_templateObject5$h || (_templateObject5$h = _taggedTemplateLiteral(["\n color: ", " !important;\n height: 50px;\n width: 100%;\n &:disabled,\n &.button--disabled {\n background: #12ffb8;\n opacity: 0.2;\n color: #3d3d41 !important;\n }\n ", " {\n margin-top: 16px;\n width: 100%;\n }\n"])), function (_ref5) {
14417
+ var EligibleWrapper = styledComponents.styled.div(_templateObject4$j || (_templateObject4$j = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n width: max-content;\n height: 50px;\n width: 100%;\n padding: 15.5px;\n //Used only once in this component, not declared on theme\n background: #272730;\n box-sizing: border-box;\n border-radius: 10px;\n margin-bottom: 26px;\n"])));
14418
+ var IdoActionButton = styledComponents.styled(Button$1)(_templateObject5$h || (_templateObject5$h = _taggedTemplateLiteral(["\n color: ", " !important;\n height: 50px;\n width: 100%;\n &:disabled,\n &.button--disabled {\n background: #12ffb8;\n opacity: 0.2;\n color: #3d3d41 !important;\n }\n ", " {\n margin-top: 16px;\n width: 100%;\n }\n"])), function (_ref5) {
14419
14419
  var theme = _ref5.theme;
14420
14420
  return theme.colors.dark;
14421
14421
  }, function (_ref6) {
14422
14422
  var theme = _ref6.theme;
14423
14423
  return theme.mediaQueries.mobile;
14424
14424
  });
14425
- var MainFunctionsWrapper = styled.div(_templateObject6$b || (_templateObject6$b = _taggedTemplateLiteral(["\n position: relative;\n width: 100%;\n height: 50px;\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n margin-top: 10px;\n ", " {\n margin-bottom: 10px;\n }\n"])), function (_ref7) {
14425
+ var MainFunctionsWrapper = styledComponents.styled.div(_templateObject6$b || (_templateObject6$b = _taggedTemplateLiteral(["\n position: relative;\n width: 100%;\n height: 50px;\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n margin-top: 10px;\n ", " {\n margin-bottom: 10px;\n }\n"])), function (_ref7) {
14426
14426
  var theme = _ref7.theme;
14427
14427
  return theme.mediaQueries.mobile;
14428
14428
  });
14429
- var SignedRow = styled.div(_templateObject7$7 || (_templateObject7$7 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n width: max-content;\n justify-content: center;\n ", " {\n margin-top: 16px;\n width: 100%;\n }\n"])), function (_ref8) {
14429
+ var SignedRow = styledComponents.styled.div(_templateObject7$7 || (_templateObject7$7 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n width: max-content;\n justify-content: center;\n ", " {\n margin-top: 16px;\n width: 100%;\n }\n"])), function (_ref8) {
14430
14430
  var theme = _ref8.theme;
14431
14431
  return theme.mediaQueries.mobile;
14432
14432
  });
14433
- var ErrorComponent = styled(Text)(_templateObject8$4 || (_templateObject8$4 = _taggedTemplateLiteral(["\n font-weight: 600;\n position: absolute;\n top: 41px;\n left: 10px;\n color: ", ";\n font-size: 12px;\n"])), function (_ref9) {
14433
+ var ErrorComponent = styledComponents.styled(Text)(_templateObject8$4 || (_templateObject8$4 = _taggedTemplateLiteral(["\n font-weight: 600;\n position: absolute;\n top: 41px;\n left: 10px;\n color: ", ";\n font-size: 12px;\n"])), function (_ref9) {
14434
14434
  var theme = _ref9.theme;
14435
14435
  return theme.colors.error;
14436
14436
  });
14437
- var CoinWrapper = styled.div(_templateObject9$3 || (_templateObject9$3 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n width: 97px;\n height: 50px;\n margin-left: 16px;\n padding: 15.5px;\n border: 1px solid #373749;\n //Used only once in this component, not declared on theme\n background: #1f1f29;\n box-sizing: border-box;\n border-radius: 10px;\n ", " {\n margin-right: 0px;\n }\n"])), function (_ref0) {
14437
+ var CoinWrapper = styledComponents.styled.div(_templateObject9$3 || (_templateObject9$3 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n width: 97px;\n height: 50px;\n margin-left: 16px;\n padding: 15.5px;\n border: 1px solid #373749;\n //Used only once in this component, not declared on theme\n background: #1f1f29;\n box-sizing: border-box;\n border-radius: 10px;\n ", " {\n margin-right: 0px;\n }\n"])), function (_ref0) {
14438
14438
  var theme = _ref0.theme;
14439
14439
  return theme.mediaQueries.mobile;
14440
14440
  });
14441
- var AddCapButton = styled(Button$1)(_templateObject0$3 || (_templateObject0$3 = _taggedTemplateLiteral(["\n color: ", ";\n height: 50px;\n width: 100%;\n &:disabled,\n &.button--disabled {\n background: ", ";\n color: ", ";\n }\n"])), function (_ref1) {
14441
+ var AddCapButton = styledComponents.styled(Button$1)(_templateObject0$3 || (_templateObject0$3 = _taggedTemplateLiteral(["\n color: ", ";\n height: 50px;\n width: 100%;\n &:disabled,\n &.button--disabled {\n background: ", ";\n color: ", ";\n }\n"])), function (_ref1) {
14442
14442
  var theme = _ref1.theme;
14443
14443
  return theme.colors.dark;
14444
14444
  }, function (_ref10) {
@@ -14448,17 +14448,17 @@ var AddCapButton = styled(Button$1)(_templateObject0$3 || (_templateObject0$3 =
14448
14448
  var theme = _ref11.theme;
14449
14449
  return theme.colors.white55;
14450
14450
  });
14451
- var AccountInfoText = styled(Text)(_templateObject1$3 || (_templateObject1$3 = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 18px;\n line-height: 130%;\n display: flex;\n align-items: center;\n margin-bottom: 26px;\n text-align: center;\n ", " {\n font-size: 16px;\n }\n ", " {\n font-size: 14px;\n }\n ", "\n"])), function (_ref12) {
14451
+ var AccountInfoText = styledComponents.styled(Text)(_templateObject1$3 || (_templateObject1$3 = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 18px;\n line-height: 130%;\n display: flex;\n align-items: center;\n margin-bottom: 26px;\n text-align: center;\n ", " {\n font-size: 16px;\n }\n ", " {\n font-size: 14px;\n }\n ", "\n"])), function (_ref12) {
14452
14452
  var theme = _ref12.theme;
14453
14453
  return theme.mediaQueries.tablet;
14454
14454
  }, function (_ref13) {
14455
14455
  var theme = _ref13.theme;
14456
14456
  return theme.mediaQueries.mobile;
14457
14457
  }, styledSystem.space);
14458
- var PersonalValuesWrapper = styled.div(_templateObject10$3 || (_templateObject10$3 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n height: max-content;\n width: 100%;\n padding: 14px 16px;\n border: 1px solid #383847;\n border-radius: 8px;\n margin-bottom: 30px;\n"])));
14459
- var PersonalValueRow = styled.div(_templateObject11$3 || (_templateObject11$3 = _taggedTemplateLiteral(["\n display: flex;\n justify-content: space-between;\n"])));
14460
- var PersonalValueTitle = styled(Text)(_templateObject12$2 || (_templateObject12$2 = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 14px;\n line-height: 170%;\n text-align: center;\n color: #818c92;\n"])));
14461
- var Row = styled(Box)(_templateObject13$1 || (_templateObject13$1 = _taggedTemplateLiteral(["\n width: 100%;\n display: flex;\n padding: 0;\n align-items: ", ";\n padding: ", ";\n border: ", ";\n border-radius: ", ";\n"])), function (_ref14) {
14458
+ var PersonalValuesWrapper = styledComponents.styled.div(_templateObject10$3 || (_templateObject10$3 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n height: max-content;\n width: 100%;\n padding: 14px 16px;\n border: 1px solid #383847;\n border-radius: 8px;\n margin-bottom: 30px;\n"])));
14459
+ var PersonalValueRow = styledComponents.styled.div(_templateObject11$3 || (_templateObject11$3 = _taggedTemplateLiteral(["\n display: flex;\n justify-content: space-between;\n"])));
14460
+ var PersonalValueTitle = styledComponents.styled(Text)(_templateObject12$2 || (_templateObject12$2 = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 14px;\n line-height: 170%;\n text-align: center;\n color: #818c92;\n"])));
14461
+ var Row = styledComponents.styled(Box)(_templateObject13$1 || (_templateObject13$1 = _taggedTemplateLiteral(["\n width: 100%;\n display: flex;\n padding: 0;\n align-items: ", ";\n padding: ", ";\n border: ", ";\n border-radius: ", ";\n"])), function (_ref14) {
14462
14462
  var align = _ref14.align;
14463
14463
  return align || "center";
14464
14464
  }, function (_ref15) {
@@ -14793,17 +14793,17 @@ var AddToCap = function AddToCap(_ref18) {
14793
14793
  };
14794
14794
 
14795
14795
  var _templateObject$A, _templateObject2$s, _templateObject3$m, _templateObject4$i, _templateObject5$g;
14796
- var Description = styled.div(_templateObject$A || (_templateObject$A = _taggedTemplateLiteral(["\n font-family: Manrope;\n font-size: 12px;\n line-height: 170%;\n color: rgba(255, 255, 255, 0.55);\n align-self: flex-start;\n font-weight: normal;\n"])));
14797
- var CounterWrapper = styled.div(_templateObject2$s || (_templateObject2$s = _taggedTemplateLiteral(["\n position: relative;\n width: 100%;\n height: 81px;\n background: ", ";\n border: 1px solid rgba(255, 255, 255, 0.03);\n display: flex;\n border-radius: 10px;\n padding: 15px 0px 21px 20px;\n"])), function (_ref) {
14796
+ var Description = styledComponents.styled.div(_templateObject$A || (_templateObject$A = _taggedTemplateLiteral(["\n font-family: Manrope;\n font-size: 12px;\n line-height: 170%;\n color: rgba(255, 255, 255, 0.55);\n align-self: flex-start;\n font-weight: normal;\n"])));
14797
+ var CounterWrapper = styledComponents.styled.div(_templateObject2$s || (_templateObject2$s = _taggedTemplateLiteral(["\n position: relative;\n width: 100%;\n height: 81px;\n background: ", ";\n border: 1px solid rgba(255, 255, 255, 0.03);\n display: flex;\n border-radius: 10px;\n padding: 15px 0px 21px 20px;\n"])), function (_ref) {
14798
14798
  var theme = _ref.theme;
14799
14799
  return theme.backgrounds.secondary;
14800
14800
  });
14801
- var CapDescriptionWrapper = styled.div(_templateObject3$m || (_templateObject3$m = _taggedTemplateLiteral(["\n color: ", ";\n display: flex;\n flex-direction: column;\n justify-content: space-around;\n font-weight: bold;\n"])), function (_ref2) {
14801
+ var CapDescriptionWrapper = styledComponents.styled.div(_templateObject3$m || (_templateObject3$m = _taggedTemplateLiteral(["\n color: ", ";\n display: flex;\n flex-direction: column;\n justify-content: space-around;\n font-weight: bold;\n"])), function (_ref2) {
14802
14802
  var theme = _ref2.theme;
14803
14803
  return theme.colors.white;
14804
14804
  });
14805
- var SoftCapWrapper = styled(CapDescriptionWrapper)(_templateObject4$i || (_templateObject4$i = _taggedTemplateLiteral(["\n border-right: 2px solid #252530;\n margin-left: 10px;\n padding-right: 17px;\n"])));
14806
- var HardCapWrapper = styled(CapDescriptionWrapper)(_templateObject5$g || (_templateObject5$g = _taggedTemplateLiteral(["\n align-items: center;\n margin-left: 32px;\n"])));
14805
+ var SoftCapWrapper = styledComponents.styled(CapDescriptionWrapper)(_templateObject4$i || (_templateObject4$i = _taggedTemplateLiteral(["\n border-right: 2px solid #252530;\n margin-left: 10px;\n padding-right: 17px;\n"])));
14806
+ var HardCapWrapper = styledComponents.styled(CapDescriptionWrapper)(_templateObject5$g || (_templateObject5$g = _taggedTemplateLiteral(["\n align-items: center;\n margin-left: 32px;\n"])));
14807
14807
  var CapCounter = function CapCounter(_ref3) {
14808
14808
  var _ref3$softCap = _ref3.softCap,
14809
14809
  softCap = _ref3$softCap === void 0 ? 332.52 : _ref3$softCap,
@@ -14858,17 +14858,17 @@ var SpacePadSchedule = function SpacePadSchedule(_ref) {
14858
14858
  };
14859
14859
 
14860
14860
  var _templateObject$z, _templateObject2$r, _templateObject3$l, _templateObject4$h, _templateObject5$f;
14861
- var MainWrapper = styled.div(_templateObject$z || (_templateObject$z = _taggedTemplateLiteral(["\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n background: rgba(255, 255, 255, 0.1);\n width: ", ";\n height: 34px;\n border-radius: 10px;\n font-weight: bold;\n font-size: 14px;\n padding: 2px;\n z-index: 99;\n"])), function (_ref) {
14861
+ var MainWrapper = styledComponents.styled.div(_templateObject$z || (_templateObject$z = _taggedTemplateLiteral(["\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n background: rgba(255, 255, 255, 0.1);\n width: ", ";\n height: 34px;\n border-radius: 10px;\n font-weight: bold;\n font-size: 14px;\n padding: 2px;\n z-index: 99;\n"])), function (_ref) {
14862
14862
  var width = _ref.width;
14863
14863
  return width ? "".concat(width, "px") : "100%";
14864
14864
  });
14865
- var SecondWrapper = styled.div(_templateObject2$r || (_templateObject2$r = _taggedTemplateLiteral(["\n position: relative;\n display: flex;\n border-radius: 8px;\n z-index: 101;\n width: 100%;\n"])));
14866
- var ToggleButton = styled.div(_templateObject3$l || (_templateObject3$l = _taggedTemplateLiteral(["\n position: absolute;\n display: flex;\n height: 100%;\n width: 50%;\n background: rgba(255, 255, 255, 0.85);\n border-radius: 8px;\n transform: translateX(", ");\n transition: 0.4s ease-out;\n z-index: 100;\n"])), function (_ref2) {
14865
+ var SecondWrapper = styledComponents.styled.div(_templateObject2$r || (_templateObject2$r = _taggedTemplateLiteral(["\n position: relative;\n display: flex;\n border-radius: 8px;\n z-index: 101;\n width: 100%;\n"])));
14866
+ var ToggleButton = styledComponents.styled.div(_templateObject3$l || (_templateObject3$l = _taggedTemplateLiteral(["\n position: absolute;\n display: flex;\n height: 100%;\n width: 50%;\n background: rgba(255, 255, 255, 0.85);\n border-radius: 8px;\n transform: translateX(", ");\n transition: 0.4s ease-out;\n z-index: 100;\n"])), function (_ref2) {
14867
14867
  var isSwitched = _ref2.isSwitched;
14868
14868
  return isSwitched ? "100%" : "0%";
14869
14869
  });
14870
- var RowWrapper = styled.div(_templateObject4$h || (_templateObject4$h = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n width: 100%;\n height: 100%;\n"])));
14871
- var SubscriptionWrapper = styled.div(_templateObject5$f || (_templateObject5$f = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n justify-content: center;\n height: 30px;\n width: 50%;\n border-radius: 8px;\n cursor: pointer;\n z-index: 101;\n color: ", ";\n transition: 0.4s ease-out;\n"])), function (_ref3) {
14870
+ var RowWrapper = styledComponents.styled.div(_templateObject4$h || (_templateObject4$h = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n width: 100%;\n height: 100%;\n"])));
14871
+ var SubscriptionWrapper = styledComponents.styled.div(_templateObject5$f || (_templateObject5$f = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n justify-content: center;\n height: 30px;\n width: 50%;\n border-radius: 8px;\n cursor: pointer;\n z-index: 101;\n color: ", ";\n transition: 0.4s ease-out;\n"])), function (_ref3) {
14872
14872
  var isActive = _ref3.isActive;
14873
14873
  return isActive ? "black" : "rgba(255, 255, 255, 0.25)";
14874
14874
  });
@@ -14915,15 +14915,15 @@ var Switch = function Switch(_ref4) {
14915
14915
  };
14916
14916
 
14917
14917
  var _templateObject$y, _templateObject2$q, _templateObject3$k, _templateObject4$g, _templateObject5$e, _templateObject6$a, _templateObject7$6, _templateObject8$3, _templateObject9$2, _templateObject0$2, _templateObject1$2, _templateObject10$2, _templateObject11$2, _templateObject12$1;
14918
- var SponsoredText = styled(Text)(_templateObject$y || (_templateObject$y = _taggedTemplateLiteral(["\n position: absolute;\n font-weight: normal;\n font-size: 10px;\n line-height: 170%;\n color: #12ffb8;\n top: -20px;\n left: 10px;\n"])));
14919
- var SpacePadProjectWrapper = styled.div(_templateObject2$q || (_templateObject2$q = _taggedTemplateLiteral(["\n position: relative;\n width: 406px;\n height: max-content;\n ", " {\n min-width: max-content;\n }\n ", " {\n width: 100%;\n }\n"])), function (_ref) {
14918
+ var SponsoredText = styledComponents.styled(Text)(_templateObject$y || (_templateObject$y = _taggedTemplateLiteral(["\n position: absolute;\n font-weight: normal;\n font-size: 10px;\n line-height: 170%;\n color: #12ffb8;\n top: -20px;\n left: 10px;\n"])));
14919
+ var SpacePadProjectWrapper = styledComponents.styled.div(_templateObject2$q || (_templateObject2$q = _taggedTemplateLiteral(["\n position: relative;\n width: 406px;\n height: max-content;\n ", " {\n min-width: max-content;\n }\n ", " {\n width: 100%;\n }\n"])), function (_ref) {
14920
14920
  var theme = _ref.theme;
14921
14921
  return theme.mediaQueries.desktop;
14922
14922
  }, function (_ref2) {
14923
14923
  var theme = _ref2.theme;
14924
14924
  return theme.mediaQueries.mobile;
14925
14925
  });
14926
- var SpacePadProjectCard = styled.div(_templateObject3$k || (_templateObject3$k = _taggedTemplateLiteral(["\n background: ", ";\n border: 1px solid ", ";\n box-sizing: border-box;\n border-radius: 15px;\n max-width: 100%;\n height: 100%;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: space-between;\n overflow: hidden;\n cursor: pointer;\n padding-bottom: 24px;\n"])), function (_ref3) {
14926
+ var SpacePadProjectCard = styledComponents.styled.div(_templateObject3$k || (_templateObject3$k = _taggedTemplateLiteral(["\n background: ", ";\n border: 1px solid ", ";\n box-sizing: border-box;\n border-radius: 15px;\n max-width: 100%;\n height: 100%;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: space-between;\n overflow: hidden;\n cursor: pointer;\n padding-bottom: 24px;\n"])), function (_ref3) {
14927
14927
  var theme = _ref3.theme;
14928
14928
  return theme.backgrounds.primary;
14929
14929
  }, function (_ref4) {
@@ -14931,29 +14931,29 @@ var SpacePadProjectCard = styled.div(_templateObject3$k || (_templateObject3$k =
14931
14931
  highlighted = _ref4.highlighted;
14932
14932
  return highlighted ? "#12FFB8" : theme.colors.white3;
14933
14933
  });
14934
- var ProjectPoster = styled.div(_templateObject4$g || (_templateObject4$g = _taggedTemplateLiteral(["\n min-height: 175px;\n width: 100%;\n position: relative;\n background: #16161d;\n background-image: ", ";\n background-position: center; /* Center the image */\n background-repeat: no-repeat; /* Do not repeat the image */\n background-size: cover;\n"])), function (_ref5) {
14934
+ var ProjectPoster = styledComponents.styled.div(_templateObject4$g || (_templateObject4$g = _taggedTemplateLiteral(["\n min-height: 175px;\n width: 100%;\n position: relative;\n background: #16161d;\n background-image: ", ";\n background-position: center; /* Center the image */\n background-repeat: no-repeat; /* Do not repeat the image */\n background-size: cover;\n"])), function (_ref5) {
14935
14935
  var background = _ref5.background;
14936
14936
  return background;
14937
14937
  });
14938
- var ProjectLogo = styled.div(_templateObject5$e || (_templateObject5$e = _taggedTemplateLiteral(["\n position: absolute;\n display: flex;\n justify-content: center;\n align-items: center;\n width: 80px;\n height: 80px;\n border-radius: 50%;\n top: 138px;\n left: 20px;\n background: #16161d;\n background-image: ", ";\n background-position: center; /* Center the image */\n background-repeat: no-repeat; /* Do not repeat the image */\n background-size: cover;\n border: 3px solid #373749;\n overflow: hidden;\n"])), function (_ref6) {
14938
+ var ProjectLogo = styledComponents.styled.div(_templateObject5$e || (_templateObject5$e = _taggedTemplateLiteral(["\n position: absolute;\n display: flex;\n justify-content: center;\n align-items: center;\n width: 80px;\n height: 80px;\n border-radius: 50%;\n top: 138px;\n left: 20px;\n background: #16161d;\n background-image: ", ";\n background-position: center; /* Center the image */\n background-repeat: no-repeat; /* Do not repeat the image */\n background-size: cover;\n border: 3px solid #373749;\n overflow: hidden;\n"])), function (_ref6) {
14939
14939
  var background = _ref6.background;
14940
14940
  return background;
14941
14941
  });
14942
- var RoundWrapper = styled.div(_templateObject6$a || (_templateObject6$a = _taggedTemplateLiteral(["\n position: absolute;\n top: 154px;\n right: 16px;\n display: flex;\n align-items: center;\n justify-content: space-between;\n padding: 10px 12px 10px 16px;\n background: #272730;\n box-sizing: border-box;\n border-radius: 10px;\n width: max-content;\n height: 40px;\n"])));
14943
- var RoundNumber = styled.div(_templateObject7$6 || (_templateObject7$6 = _taggedTemplateLiteral(["\n display: flex;\n align-items: flex-end;\n justify-content: space-around;\n color: ", ";\n"])), function (_ref7) {
14942
+ var RoundWrapper = styledComponents.styled.div(_templateObject6$a || (_templateObject6$a = _taggedTemplateLiteral(["\n position: absolute;\n top: 154px;\n right: 16px;\n display: flex;\n align-items: center;\n justify-content: space-between;\n padding: 10px 12px 10px 16px;\n background: #272730;\n box-sizing: border-box;\n border-radius: 10px;\n width: max-content;\n height: 40px;\n"])));
14943
+ var RoundNumber = styledComponents.styled.div(_templateObject7$6 || (_templateObject7$6 = _taggedTemplateLiteral(["\n display: flex;\n align-items: flex-end;\n justify-content: space-around;\n color: ", ";\n"])), function (_ref7) {
14944
14944
  var theme = _ref7.theme;
14945
14945
  return theme.colors.white55;
14946
14946
  });
14947
- var ProjectDetailsWrapper = styled.div(_templateObject8$3 || (_templateObject8$3 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n width: 100%;\n height: 100%;\n padding: 20px;\n padding-top: 58px;\n"])));
14948
- var IDOButton = styled(Button$1)(_templateObject9$2 || (_templateObject9$2 = _taggedTemplateLiteral(["\n width: max-content;\n color: ", ";\n padding: 8px 40px;\n"])), function (_ref8) {
14947
+ var ProjectDetailsWrapper = styledComponents.styled.div(_templateObject8$3 || (_templateObject8$3 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n width: 100%;\n height: 100%;\n padding: 20px;\n padding-top: 58px;\n"])));
14948
+ var IDOButton = styledComponents.styled(Button$1)(_templateObject9$2 || (_templateObject9$2 = _taggedTemplateLiteral(["\n width: max-content;\n color: ", ";\n padding: 8px 40px;\n"])), function (_ref8) {
14949
14949
  var theme = _ref8.theme;
14950
14950
  return theme.colors.white;
14951
14951
  });
14952
- var SwitcherRow = styled.div(_templateObject0$2 || (_templateObject0$2 = _taggedTemplateLiteral(["\n display: flex;\n width: 100%;\n flex-direction: row;\n justify-content: flex-end;\n margin-bottom: 16px;\n z-index: 99999;\n"])));
14953
- var DetailsColumn = styled.div(_templateObject1$2 || (_templateObject1$2 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n padding: 16px 0px;\n width: 100%;\n height: 108px !important;\n border-top: 1px solid #272730;\n border-bottom: 1px solid #272730;\n margin: 16px 0px;\n"])));
14954
- var CommingSoonWrapper = styled.div(_templateObject10$2 || (_templateObject10$2 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n padding: 38px 0px;\n height: max-content;\n width: 100%;\n margin-bottom: 30px;\n"])));
14955
- var CommingSoonTitle = styled(Text)(_templateObject11$2 || (_templateObject11$2 = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 26px;\n line-height: 130%;\n color: #7763f6;\n text-align: center;\n margin-top: 24px;\n"])));
14956
- var MockedProgressComponent = styled.div(_templateObject12$1 || (_templateObject12$1 = _taggedTemplateLiteral(["\n width: 100%;\n height: 75px;\n"])));
14952
+ var SwitcherRow = styledComponents.styled.div(_templateObject0$2 || (_templateObject0$2 = _taggedTemplateLiteral(["\n display: flex;\n width: 100%;\n flex-direction: row;\n justify-content: flex-end;\n margin-bottom: 16px;\n z-index: 99999;\n"])));
14953
+ var DetailsColumn = styledComponents.styled.div(_templateObject1$2 || (_templateObject1$2 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n padding: 16px 0px;\n width: 100%;\n height: 108px !important;\n border-top: 1px solid #272730;\n border-bottom: 1px solid #272730;\n margin: 16px 0px;\n"])));
14954
+ var CommingSoonWrapper = styledComponents.styled.div(_templateObject10$2 || (_templateObject10$2 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n padding: 38px 0px;\n height: max-content;\n width: 100%;\n margin-bottom: 30px;\n"])));
14955
+ var CommingSoonTitle = styledComponents.styled(Text)(_templateObject11$2 || (_templateObject11$2 = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 26px;\n line-height: 130%;\n color: #7763f6;\n text-align: center;\n margin-top: 24px;\n"])));
14956
+ var MockedProgressComponent = styledComponents.styled.div(_templateObject12$1 || (_templateObject12$1 = _taggedTemplateLiteral(["\n width: 100%;\n height: 75px;\n"])));
14957
14957
  var SpacePadProject = function SpacePadProject(props) {
14958
14958
  var spacePadData = props.spacePadData,
14959
14959
  spaceRound = props.spaceRound,
@@ -15170,7 +15170,7 @@ var SpacePadProject = function SpacePadProject(props) {
15170
15170
  };
15171
15171
 
15172
15172
  var _templateObject$x, _templateObject2$p, _templateObject3$j, _templateObject4$f, _templateObject5$d, _templateObject6$9, _templateObject7$5, _templateObject8$2, _templateObject9$1, _templateObject0$1, _templateObject1$1, _templateObject10$1, _templateObject11$1, _templateObject12, _templateObject13;
15173
- var AccountInfoWrapper = styled.div(_templateObject$x || (_templateObject$x = _taggedTemplateLiteral(["\n position: relative;\n background: ", ";\n border: 1px solid ", ";\n border-radius: 10px;\n padding: 42px 30px;\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n ", " {\n flex-direction: column;\n padding: 30px 20px;\n }\n"])), function (_ref) {
15173
+ var AccountInfoWrapper = styledComponents.styled.div(_templateObject$x || (_templateObject$x = _taggedTemplateLiteral(["\n position: relative;\n background: ", ";\n border: 1px solid ", ";\n border-radius: 10px;\n padding: 42px 30px;\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n ", " {\n flex-direction: column;\n padding: 30px 20px;\n }\n"])), function (_ref) {
15174
15174
  var theme = _ref.theme;
15175
15175
  return theme.colors.card;
15176
15176
  }, function (_ref2) {
@@ -15180,14 +15180,14 @@ var AccountInfoWrapper = styled.div(_templateObject$x || (_templateObject$x = _t
15180
15180
  var theme = _ref3.theme;
15181
15181
  return theme.mediaQueries.tablet;
15182
15182
  });
15183
- var StyledAccountInfo = styled.div(_templateObject2$p || (_templateObject2$p = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n align-items: space-between;\n justify-content: flex-start;\n margin-left: 28px;\n ", " {\n margin-bottom: ", ";\n margin-left: 0px;\n }\n"])), function (_ref4) {
15183
+ var StyledAccountInfo = styledComponents.styled.div(_templateObject2$p || (_templateObject2$p = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n align-items: space-between;\n justify-content: flex-start;\n margin-left: 28px;\n ", " {\n margin-bottom: ", ";\n margin-left: 0px;\n }\n"])), function (_ref4) {
15184
15184
  var theme = _ref4.theme;
15185
15185
  return theme.mediaQueries.mobile;
15186
15186
  }, function (_ref5) {
15187
15187
  var connectionInProgress = _ref5.connectionInProgress;
15188
15188
  return connectionInProgress ? "0px" : "24px";
15189
15189
  });
15190
- var UserComponent = styled.p(_templateObject3$j || (_templateObject3$j = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n align-items: center;\n ", " {\n width: 100%;\n margin-bottom: ", ";\n }\n ", " {\n width: 100%;\n justify-content: ", ";\n }\n"])), function (_ref6) {
15190
+ var UserComponent = styledComponents.styled.p(_templateObject3$j || (_templateObject3$j = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n align-items: center;\n ", " {\n width: 100%;\n margin-bottom: ", ";\n }\n ", " {\n width: 100%;\n justify-content: ", ";\n }\n"])), function (_ref6) {
15191
15191
  var theme = _ref6.theme;
15192
15192
  return theme.mediaQueries.tablet;
15193
15193
  }, function (_ref7) {
@@ -15210,7 +15210,7 @@ var UserComponent = styled.p(_templateObject3$j || (_templateObject3$j = _tagged
15210
15210
  // border-radius: 23px;
15211
15211
  // background: #2b2b38;
15212
15212
  // `;
15213
- var AccountComponent = styled.div(_templateObject4$f || (_templateObject4$f = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n align-items: flex-end;\n justify-content: space-between;\n border: 1px solid ", ";\n border-radius: 10px;\n background: ", ";\n padding: 16px 24px;\n margin-left: 31px;\n ", " {\n width: 100%;\n align-items: center;\n margin-left: 0px;\n }\n"])), function (_ref0) {
15213
+ var AccountComponent = styledComponents.styled.div(_templateObject4$f || (_templateObject4$f = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n align-items: flex-end;\n justify-content: space-between;\n border: 1px solid ", ";\n border-radius: 10px;\n background: ", ";\n padding: 16px 24px;\n margin-left: 31px;\n ", " {\n width: 100%;\n align-items: center;\n margin-left: 0px;\n }\n"])), function (_ref0) {
15214
15214
  var theme = _ref0.theme;
15215
15215
  return theme.colors.white3;
15216
15216
  }, function (_ref1) {
@@ -15220,23 +15220,23 @@ var AccountComponent = styled.div(_templateObject4$f || (_templateObject4$f = _t
15220
15220
  var theme = _ref10.theme;
15221
15221
  return theme.mediaQueries.tablet;
15222
15222
  });
15223
- var BalanceText = styled(Text)(_templateObject5$d || (_templateObject5$d = _taggedTemplateLiteral(["\n margin-left: 50px;\n ", " {\n margin-left: 0px;\n }\n"])), function (_ref11) {
15223
+ var BalanceText = styledComponents.styled(Text)(_templateObject5$d || (_templateObject5$d = _taggedTemplateLiteral(["\n margin-left: 50px;\n ", " {\n margin-left: 0px;\n }\n"])), function (_ref11) {
15224
15224
  var theme = _ref11.theme;
15225
15225
  return theme.mediaQueries.tablet;
15226
15226
  });
15227
- var AccountTitle = styled(Text)(_templateObject6$9 || (_templateObject6$9 = _taggedTemplateLiteral(["\n ", " {\n display: none;\n }\n"])), function (_ref12) {
15227
+ var AccountTitle = styledComponents.styled(Text)(_templateObject6$9 || (_templateObject6$9 = _taggedTemplateLiteral(["\n ", " {\n display: none;\n }\n"])), function (_ref12) {
15228
15228
  var theme = _ref12.theme;
15229
15229
  return theme.mediaQueries.mobile;
15230
15230
  });
15231
- var StyledUserAvatar = styled(Icon$20)(_templateObject7$5 || (_templateObject7$5 = _taggedTemplateLiteral(["\n width: 44px;\n height: 44px;\n z-index: 99999;\n ", " {\n display: none;\n }\n"])), function (_ref13) {
15231
+ var StyledUserAvatar = styledComponents.styled(Icon$20)(_templateObject7$5 || (_templateObject7$5 = _taggedTemplateLiteral(["\n width: 44px;\n height: 44px;\n z-index: 99999;\n ", " {\n display: none;\n }\n"])), function (_ref13) {
15232
15232
  var theme = _ref13.theme;
15233
15233
  return theme.mediaQueries.mobile;
15234
15234
  });
15235
- var StyledMobileUserAvatar = styled(Icon$1$)(_templateObject8$2 || (_templateObject8$2 = _taggedTemplateLiteral(["\n width: 44px;\n height: 44px;\n display: none;\n ", " {\n display: block;\n }\n"])), function (_ref14) {
15235
+ var StyledMobileUserAvatar = styledComponents.styled(Icon$1$)(_templateObject8$2 || (_templateObject8$2 = _taggedTemplateLiteral(["\n width: 44px;\n height: 44px;\n display: none;\n ", " {\n display: block;\n }\n"])), function (_ref14) {
15236
15236
  var theme = _ref14.theme;
15237
15237
  return theme.mediaQueries.mobile;
15238
15238
  });
15239
- var UserUpdateComponent = styled.div(_templateObject9$1 || (_templateObject9$1 = _taggedTemplateLiteral(["\n right: 0px;\n top: -54px;\n position: absolute;\n display: ", ";\n flex-direction: row;\n align-items: center;\n ", " {\n display: ", ";\n position: relative;\n top: 0px;\n flex-direction: column;\n justify-content: space-between;\n align-items: flex-end;\n }\n"])), function (_ref15) {
15239
+ var UserUpdateComponent = styledComponents.styled.div(_templateObject9$1 || (_templateObject9$1 = _taggedTemplateLiteral(["\n right: 0px;\n top: -54px;\n position: absolute;\n display: ", ";\n flex-direction: row;\n align-items: center;\n ", " {\n display: ", ";\n position: relative;\n top: 0px;\n flex-direction: column;\n justify-content: space-between;\n align-items: flex-end;\n }\n"])), function (_ref15) {
15240
15240
  var mobile = _ref15.mobile;
15241
15241
  return mobile ? "none" : "flex";
15242
15242
  }, function (_ref16) {
@@ -15246,7 +15246,7 @@ var UserUpdateComponent = styled.div(_templateObject9$1 || (_templateObject9$1 =
15246
15246
  var mobile = _ref17.mobile;
15247
15247
  return mobile ? "flex" : "none";
15248
15248
  });
15249
- var MobileUserAndUpdate = styled.div(_templateObject0$1 || (_templateObject0$1 = _taggedTemplateLiteral(["\n display: none;\n ", " {\n display: flex;\n width: 100%;\n flex-direction: row;\n align-items: center;\n justify-content: ", ";\n margin-bottom: ", ";\n }\n"])), function (_ref18) {
15249
+ var MobileUserAndUpdate = styledComponents.styled.div(_templateObject0$1 || (_templateObject0$1 = _taggedTemplateLiteral(["\n display: none;\n ", " {\n display: flex;\n width: 100%;\n flex-direction: row;\n align-items: center;\n justify-content: ", ";\n margin-bottom: ", ";\n }\n"])), function (_ref18) {
15250
15250
  var theme = _ref18.theme;
15251
15251
  return theme.mediaQueries.mobile;
15252
15252
  }, function (_ref19) {
@@ -15256,26 +15256,26 @@ var MobileUserAndUpdate = styled.div(_templateObject0$1 || (_templateObject0$1 =
15256
15256
  var connectionInProgress = _ref20.connectionInProgress;
15257
15257
  return connectionInProgress ? "10px" : "39px";
15258
15258
  });
15259
- var RefreshButton = styled.div(_templateObject1$1 || (_templateObject1$1 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n padding: 4px 16px;\n justify-content: space-between;\n align-items: center;\n color: ", ";\n font-weight: bold;\n font-size: 14px;\n line-height: 140%;\n background: #2b2b38;\n border-radius: 7px;\n cursor: pointer;\n"])), function (_ref21) {
15259
+ var RefreshButton = styledComponents.styled.div(_templateObject1$1 || (_templateObject1$1 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n padding: 4px 16px;\n justify-content: space-between;\n align-items: center;\n color: ", ";\n font-weight: bold;\n font-size: 14px;\n line-height: 140%;\n background: #2b2b38;\n border-radius: 7px;\n cursor: pointer;\n"])), function (_ref21) {
15260
15260
  var theme = _ref21.theme;
15261
15261
  return theme.colors.white;
15262
15262
  });
15263
- var StyledSyncIcon = styled.div(_templateObject10$1 || (_templateObject10$1 = _taggedTemplateLiteral(["\n margin-right: 10px;\n height: 20px;\n @keyframes spin {\n 100% {\n transform: rotate(1turn);\n }\n };\n ", "\n}\n"])), function (_ref22) {
15263
+ var StyledSyncIcon = styledComponents.styled.div(_templateObject10$1 || (_templateObject10$1 = _taggedTemplateLiteral(["\n margin-right: 10px;\n height: 20px;\n @keyframes spin {\n 100% {\n transform: rotate(1turn);\n }\n };\n ", "\n}\n"])), function (_ref22) {
15264
15264
  var syncing = _ref22.syncing;
15265
15265
  return syncing && "animation: spin 2s linear infinite;";
15266
15266
  });
15267
- var UpdatedText = styled(Text)(_templateObject11$1 || (_templateObject11$1 = _taggedTemplateLiteral(["\n font-size: 12px;\n line-height: 170%;\n margin-bottom: 0px;\n margin-right: 14px;\n color: ", ";\n ", " {\n margin-bottom: 10px;\n margin-right: 0px;\n }\n"])), function (_ref23) {
15267
+ var UpdatedText = styledComponents.styled(Text)(_templateObject11$1 || (_templateObject11$1 = _taggedTemplateLiteral(["\n font-size: 12px;\n line-height: 170%;\n margin-bottom: 0px;\n margin-right: 14px;\n color: ", ";\n ", " {\n margin-bottom: 10px;\n margin-right: 0px;\n }\n"])), function (_ref23) {
15268
15268
  var theme = _ref23.theme;
15269
15269
  return theme.colors.white55;
15270
15270
  }, function (_ref24) {
15271
15271
  var theme = _ref24.theme;
15272
15272
  return theme.mediaQueries.mobile;
15273
15273
  });
15274
- var ValuesDetails = styled.div(_templateObject12 || (_templateObject12 = _taggedTemplateLiteral(["\n display: flex;\n justify-content: flex-end;\n align-items: center;\n ", " {\n flex-direction: column-reverse;\n width: 100%;\n }\n"])), function (_ref25) {
15274
+ var ValuesDetails = styledComponents.styled.div(_templateObject12 || (_templateObject12 = _taggedTemplateLiteral(["\n display: flex;\n justify-content: flex-end;\n align-items: center;\n ", " {\n flex-direction: column-reverse;\n width: 100%;\n }\n"])), function (_ref25) {
15275
15275
  var theme = _ref25.theme;
15276
15276
  return theme.mediaQueries.tablet;
15277
15277
  });
15278
- var LoadingDots = styled.p(_templateObject13 || (_templateObject13 = _taggedTemplateLiteral(["\n width: 50px;\n color: white;\n font-size: 26px;\n text-align: ", ";\n &::after {\n content: \" .\";\n animation: dots 1.5s steps(5, end) infinite;\n }\n\n @keyframes dots {\n 0%,\n 20% {\n color: rgba(0, 0, 0, 0);\n text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);\n }\n 40% {\n color: white;\n text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);\n }\n 60% {\n text-shadow: 0.25em 0 0 white, 0.5em 0 0 rgba(0, 0, 0, 0);\n }\n 80%,\n 100% {\n text-shadow: 0.25em 0 0 white, 0.5em 0 0 white;\n }\n }\n"])), function (_ref26) {
15278
+ var LoadingDots = styledComponents.styled.p(_templateObject13 || (_templateObject13 = _taggedTemplateLiteral(["\n width: 50px;\n color: white;\n font-size: 26px;\n text-align: ", ";\n &::after {\n content: \" .\";\n animation: dots 1.5s steps(5, end) infinite;\n }\n\n @keyframes dots {\n 0%,\n 20% {\n color: rgba(0, 0, 0, 0);\n text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);\n }\n 40% {\n color: white;\n text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);\n }\n 60% {\n text-shadow: 0.25em 0 0 white, 0.5em 0 0 rgba(0, 0, 0, 0);\n }\n 80%,\n 100% {\n text-shadow: 0.25em 0 0 white, 0.5em 0 0 white;\n }\n }\n"])), function (_ref26) {
15279
15279
  var centered = _ref26.centered;
15280
15280
  return centered ? "center" : "left";
15281
15281
  });
@@ -15510,22 +15510,22 @@ var Icon$C = function Icon() {
15510
15510
  };
15511
15511
 
15512
15512
  var _templateObject$w, _templateObject2$o, _templateObject3$i, _templateObject4$e, _templateObject5$c, _templateObject6$8, _templateObject7$4, _templateObject8$1, _templateObject9, _templateObject0, _templateObject1, _templateObject10, _templateObject11;
15513
- var Wrapper$2 = styled.div(_templateObject$w || (_templateObject$w = _taggedTemplateLiteral(["\n height: ", ";\n width: 350px;\n padding: 24px;\n background: #191921;\n border-radius: 10px;\n @media screen and (max-width: 1180px) {\n height: auto;\n }\n"])), function (_ref) {
15513
+ var Wrapper$2 = styledComponents.styled.div(_templateObject$w || (_templateObject$w = _taggedTemplateLiteral(["\n height: ", ";\n width: 350px;\n padding: 24px;\n background: #191921;\n border-radius: 10px;\n @media screen and (max-width: 1180px) {\n height: auto;\n }\n"])), function (_ref) {
15514
15514
  var height = _ref.height;
15515
15515
  return height ? "".concat(height, "px") : "auto";
15516
15516
  });
15517
- var Header = styled.div(_templateObject2$o || (_templateObject2$o = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n justify-content: space-between;\n"])));
15518
- var PoolWeightWrapper = styled.div(_templateObject3$i || (_templateObject3$i = _taggedTemplateLiteral(["\n width: auto;\n display: flex;\n flex-direction: column;\n"])));
15519
- var PoolWeightText = styled(Text)(_templateObject4$e || (_templateObject4$e = _taggedTemplateLiteral(["\n color: rgba(255, 255, 255, 0.55);\n"])));
15520
- var CssPowerText = styled(Text)(_templateObject5$c || (_templateObject5$c = _taggedTemplateLiteral(["\n color: rgba(255, 255, 255, 0.55);\n"])));
15521
- var RequirementDescripton = styled(Text)(_templateObject6$8 || (_templateObject6$8 = _taggedTemplateLiteral(["\ncolor: rgba(255, 255, 255, 0.55);\n"])));
15522
- var BulletPointText = styled(Text)(_templateObject7$4 || (_templateObject7$4 = _taggedTemplateLiteral(["\ncolor: rgba(255, 255, 255, 0.55);\nmargin-left: 20px;\n"])));
15523
- var CssPowerWrapper = styled.div(_templateObject8$1 || (_templateObject8$1 = _taggedTemplateLiteral(["\n display: flex;\n justify-content: flex-start;\n margin-top: 16px;\n margin-bottom: 30px;\n"])));
15524
- var CssPowerValueWrapper = styled.div(_templateObject9 || (_templateObject9 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n margin-left: 12px;\n"])));
15525
- var RequirementsDescriptionWrapper = styled.div(_templateObject0 || (_templateObject0 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n margin-top: 32px;\n margin-bottom: 16px;\n gap: 16px;\n"])));
15526
- var BulletPointLine = styled(Text)(_templateObject1 || (_templateObject1 = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n margin-bottom: 8px;\n"])));
15527
- var BulletPointIconWrapper = styled.div(_templateObject10 || (_templateObject10 = _taggedTemplateLiteral(["\n display: flex;\n"])));
15528
- var AdditionalInfo = styled(Text)(_templateObject11 || (_templateObject11 = _taggedTemplateLiteral(["\n color: rgba(255, 255, 255, 0.55);\n margin-top: 32px;\n"])));
15517
+ var Header = styledComponents.styled.div(_templateObject2$o || (_templateObject2$o = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n justify-content: space-between;\n"])));
15518
+ var PoolWeightWrapper = styledComponents.styled.div(_templateObject3$i || (_templateObject3$i = _taggedTemplateLiteral(["\n width: auto;\n display: flex;\n flex-direction: column;\n"])));
15519
+ var PoolWeightText = styledComponents.styled(Text)(_templateObject4$e || (_templateObject4$e = _taggedTemplateLiteral(["\n color: rgba(255, 255, 255, 0.55);\n"])));
15520
+ var CssPowerText = styledComponents.styled(Text)(_templateObject5$c || (_templateObject5$c = _taggedTemplateLiteral(["\n color: rgba(255, 255, 255, 0.55);\n"])));
15521
+ var RequirementDescripton = styledComponents.styled(Text)(_templateObject6$8 || (_templateObject6$8 = _taggedTemplateLiteral(["\ncolor: rgba(255, 255, 255, 0.55);\n"])));
15522
+ var BulletPointText = styledComponents.styled(Text)(_templateObject7$4 || (_templateObject7$4 = _taggedTemplateLiteral(["\ncolor: rgba(255, 255, 255, 0.55);\nmargin-left: 20px;\n"])));
15523
+ var CssPowerWrapper = styledComponents.styled.div(_templateObject8$1 || (_templateObject8$1 = _taggedTemplateLiteral(["\n display: flex;\n justify-content: flex-start;\n margin-top: 16px;\n margin-bottom: 30px;\n"])));
15524
+ var CssPowerValueWrapper = styledComponents.styled.div(_templateObject9 || (_templateObject9 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n margin-left: 12px;\n"])));
15525
+ var RequirementsDescriptionWrapper = styledComponents.styled.div(_templateObject0 || (_templateObject0 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n margin-top: 32px;\n margin-bottom: 16px;\n gap: 16px;\n"])));
15526
+ var BulletPointLine = styledComponents.styled(Text)(_templateObject1 || (_templateObject1 = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n margin-bottom: 8px;\n"])));
15527
+ var BulletPointIconWrapper = styledComponents.styled.div(_templateObject10 || (_templateObject10 = _taggedTemplateLiteral(["\n display: flex;\n"])));
15528
+ var AdditionalInfo = styledComponents.styled(Text)(_templateObject11 || (_templateObject11 = _taggedTemplateLiteral(["\n color: rgba(255, 255, 255, 0.55);\n margin-top: 32px;\n"])));
15529
15529
  var TierCard = function TierCard(_ref2) {
15530
15530
  var tierNumber = _ref2.tierNumber,
15531
15531
  poolWeightPercentage = _ref2.poolWeightPercentage,
@@ -15595,15 +15595,15 @@ var TierCard = function TierCard(_ref2) {
15595
15595
  };
15596
15596
 
15597
15597
  var _templateObject$v, _templateObject2$n, _templateObject3$h, _templateObject4$d, _templateObject5$b, _templateObject6$7;
15598
- var Wrapper$1 = styled.div(_templateObject$v || (_templateObject$v = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n align-items: center;\n width: 300px;\n"])));
15599
- var Upper = styled.div(_templateObject2$n || (_templateObject2$n = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n width: 100%;\n"])));
15600
- var IconWrapper = styled.div(_templateObject3$h || (_templateObject3$h = _taggedTemplateLiteral(["\n margin: 0 auto;\n max-width: 220px;\n max-height: 160px;\n"])));
15601
- var StepNumber = styled.p(_templateObject4$d || (_templateObject4$d = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n justify-content: center;\n width: 40px;\n height: 40px;\n border: 1px solid rgba(255, 255, 255, 0.03);\n color: #ffffff;\n opacity: 0.55;\n border-radius: 10px;\n background: #1d1d26;\n"])));
15602
- var StepDescription = styled(Text)(_templateObject5$b || (_templateObject5$b = _taggedTemplateLiteral(["\n text-align: center;\n color: rgba(255, 255, 255, 0.55);\n max-width: 229px;\n ", " {\n font-size: 14px;\n }\n"])), function (_ref) {
15598
+ var Wrapper$1 = styledComponents.styled.div(_templateObject$v || (_templateObject$v = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n align-items: center;\n width: 300px;\n"])));
15599
+ var Upper = styledComponents.styled.div(_templateObject2$n || (_templateObject2$n = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n width: 100%;\n"])));
15600
+ var IconWrapper = styledComponents.styled.div(_templateObject3$h || (_templateObject3$h = _taggedTemplateLiteral(["\n margin: 0 auto;\n max-width: 220px;\n max-height: 160px;\n"])));
15601
+ var StepNumber = styledComponents.styled.p(_templateObject4$d || (_templateObject4$d = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n justify-content: center;\n width: 40px;\n height: 40px;\n border: 1px solid rgba(255, 255, 255, 0.03);\n color: #ffffff;\n opacity: 0.55;\n border-radius: 10px;\n background: #1d1d26;\n"])));
15602
+ var StepDescription = styledComponents.styled(Text)(_templateObject5$b || (_templateObject5$b = _taggedTemplateLiteral(["\n text-align: center;\n color: rgba(255, 255, 255, 0.55);\n max-width: 229px;\n ", " {\n font-size: 14px;\n }\n"])), function (_ref) {
15603
15603
  var theme = _ref.theme;
15604
15604
  return theme.mediaQueries.mobile;
15605
15605
  });
15606
- var StepLowerDescription = styled(StepDescription)(_templateObject6$7 || (_templateObject6$7 = _taggedTemplateLiteral(["\n margin-top: 20px;\n"])));
15606
+ var StepLowerDescription = styledComponents.styled(StepDescription)(_templateObject6$7 || (_templateObject6$7 = _taggedTemplateLiteral(["\n margin-top: 20px;\n"])));
15607
15607
  var getIconByStepNumber = function getIconByStepNumber(stepNumer) {
15608
15608
  switch (stepNumer) {
15609
15609
  case 1:
@@ -15657,20 +15657,20 @@ var IdoParticipationStep = function IdoParticipationStep(_ref2) {
15657
15657
  };
15658
15658
 
15659
15659
  var _templateObject$u, _templateObject2$m, _templateObject3$g, _templateObject4$c, _templateObject5$a, _templateObject6$6, _templateObject7$3;
15660
- var UserTiersWrapper = styled.div(_templateObject$u || (_templateObject$u = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n height: max-content;\n background: ", ";\n border-radius: 16px;\n padding: 32px;\n"])), function (_ref) {
15660
+ var UserTiersWrapper = styledComponents.styled.div(_templateObject$u || (_templateObject$u = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n height: max-content;\n background: ", ";\n border-radius: 16px;\n padding: 32px;\n"])), function (_ref) {
15661
15661
  var theme = _ref.theme;
15662
15662
  return theme.colors.card;
15663
15663
  });
15664
- var TiersTitle = styled(Text)(_templateObject2$m || (_templateObject2$m = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 32px;\n line-height: 130%;\n color: ", ";\n margin-bottom: 20px;\n"])), function (_ref2) {
15664
+ var TiersTitle = styledComponents.styled(Text)(_templateObject2$m || (_templateObject2$m = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 32px;\n line-height: 130%;\n color: ", ";\n margin-bottom: 20px;\n"])), function (_ref2) {
15665
15665
  var theme = _ref2.theme;
15666
15666
  return theme.colors.white;
15667
15667
  });
15668
- var Column = styled.div(_templateObject3$g || (_templateObject3$g = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n"])));
15669
- var TierRow = styled(Box)(_templateObject4$c || (_templateObject4$c = _taggedTemplateLiteral(["\n width: 100%;\n display: flex;\n justify-content: space-between;\n align-items: center;\n padding: 10px 0px;\n border-bottom: ", ";\n"])), function (_ref3) {
15668
+ var Column = styledComponents.styled.div(_templateObject3$g || (_templateObject3$g = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n"])));
15669
+ var TierRow = styledComponents.styled(Box)(_templateObject4$c || (_templateObject4$c = _taggedTemplateLiteral(["\n width: 100%;\n display: flex;\n justify-content: space-between;\n align-items: center;\n padding: 10px 0px;\n border-bottom: ", ";\n"])), function (_ref3) {
15670
15670
  var bordered = _ref3.bordered;
15671
15671
  return bordered && "1px solid #272730";
15672
15672
  });
15673
- var TierNumberText = styled(Text)(_templateObject5$a || (_templateObject5$a = _taggedTemplateLiteral(["\n font-size: 14px;\n line-height: 160%;\n color: ", ";\n font-weight: ", ";\n position: relative;\n"])), function (_ref4) {
15673
+ var TierNumberText = styledComponents.styled(Text)(_templateObject5$a || (_templateObject5$a = _taggedTemplateLiteral(["\n font-size: 14px;\n line-height: 160%;\n color: ", ";\n font-weight: ", ";\n position: relative;\n"])), function (_ref4) {
15674
15674
  var theme = _ref4.theme,
15675
15675
  active = _ref4.active;
15676
15676
  return active ? theme.colors.white : "#818c92";
@@ -15678,8 +15678,8 @@ var TierNumberText = styled(Text)(_templateObject5$a || (_templateObject5$a = _t
15678
15678
  var active = _ref5.active;
15679
15679
  return active ? "bold" : "normal";
15680
15680
  });
15681
- var TierInfoTag = styled(StyledTag)(_templateObject6$6 || (_templateObject6$6 = _taggedTemplateLiteral(["\n font-size: 11px;\n height: max-content;\n margin-right: 5px;\n"])));
15682
- var TagsRow = styled.div(_templateObject7$3 || (_templateObject7$3 = _taggedTemplateLiteral(["\n position: absolute;\n left: 45px;\n display: flex;\n"])));
15681
+ var TierInfoTag = styledComponents.styled(StyledTag)(_templateObject6$6 || (_templateObject6$6 = _taggedTemplateLiteral(["\n font-size: 11px;\n height: max-content;\n margin-right: 5px;\n"])));
15682
+ var TagsRow = styledComponents.styled.div(_templateObject7$3 || (_templateObject7$3 = _taggedTemplateLiteral(["\n position: absolute;\n left: 45px;\n display: flex;\n"])));
15683
15683
  var UserTiers = function UserTiers(props) {
15684
15684
  var tiers = props.tiers,
15685
15685
  _props$currentUserTie = props.currentUserTier,
@@ -15748,7 +15748,7 @@ var UserTiers = function UserTiers(props) {
15748
15748
  };
15749
15749
 
15750
15750
  var _templateObject$t;
15751
- var StyledMultiValue = styled.div(_templateObject$t || (_templateObject$t = _taggedTemplateLiteral(["\n display: flex;\n justify-content: flex-end;\n"])));
15751
+ var StyledMultiValue = styledComponents.styled.div(_templateObject$t || (_templateObject$t = _taggedTemplateLiteral(["\n display: flex;\n justify-content: flex-end;\n"])));
15752
15752
  var SpacePadKeyMetrics = function SpacePadKeyMetrics(_ref) {
15753
15753
  var spaceRound = _ref.spaceRound,
15754
15754
  useEndTime = _ref.useEndTime,
@@ -15783,8 +15783,8 @@ var SpacePadKeyMetrics = function SpacePadKeyMetrics(_ref) {
15783
15783
  };
15784
15784
 
15785
15785
  var _templateObject$s, _templateObject2$l, _templateObject3$f, _templateObject4$b, _templateObject5$9;
15786
- var LaunchWrapper = styled.div(_templateObject$s || (_templateObject$s = _taggedTemplateLiteral(["\n width: 100%;\n background: #1d1d26;\n padding: 44px;\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n align-items: center;\n margin-top: 70px;\n"])));
15787
- var ForProjects = styled(Text)(_templateObject2$l || (_templateObject2$l = _taggedTemplateLiteral(["\n margin: 0 auto;\n width: 135px;\n text-align: center;\n border: 1px solid ", ";\n color: ", ";\n line-height: 28px;\n border-radius: 10px;\n"])), function (_ref) {
15786
+ var LaunchWrapper = styledComponents.styled.div(_templateObject$s || (_templateObject$s = _taggedTemplateLiteral(["\n width: 100%;\n background: #1d1d26;\n padding: 44px;\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n align-items: center;\n margin-top: 70px;\n"])));
15787
+ var ForProjects = styledComponents.styled(Text)(_templateObject2$l || (_templateObject2$l = _taggedTemplateLiteral(["\n margin: 0 auto;\n width: 135px;\n text-align: center;\n border: 1px solid ", ";\n color: ", ";\n line-height: 28px;\n border-radius: 10px;\n"])), function (_ref) {
15788
15788
  var theme = _ref.theme,
15789
15789
  mainColor = _ref.mainColor;
15790
15790
  return mainColor || theme.colors.darkPurple;
@@ -15793,9 +15793,9 @@ var ForProjects = styled(Text)(_templateObject2$l || (_templateObject2$l = _tagg
15793
15793
  mainColor = _ref2.mainColor;
15794
15794
  return mainColor || theme.colors.darkPurple;
15795
15795
  });
15796
- var LaunchHeader = styled(Text)(_templateObject3$f || (_templateObject3$f = _taggedTemplateLiteral(["\n margin: 20px 0;\n text-align: center;\n @media screen and (max-width: 760px) {\n width: 310px;\n font-size: 26px;\n }\n"])));
15797
- var LaunchDescription = styled(Text)(_templateObject4$b || (_templateObject4$b = _taggedTemplateLiteral(["\n width: 630px;\n color: rgba(255, 255, 255, 0.55);\n text-align: center;\n @media screen and (max-width: 760px) {\n width: 310px;\n }\n"])));
15798
- var ApplyForIdoButton = styled(Button$1)(_templateObject5$9 || (_templateObject5$9 = _taggedTemplateLiteral(["\n width: 161px;\n height: 44px;\n border-radius: 10px;\n background: #12ffb8;\n margin-top: 45px;\n"])));
15796
+ var LaunchHeader = styledComponents.styled(Text)(_templateObject3$f || (_templateObject3$f = _taggedTemplateLiteral(["\n margin: 20px 0;\n text-align: center;\n @media screen and (max-width: 760px) {\n width: 310px;\n font-size: 26px;\n }\n"])));
15797
+ var LaunchDescription = styledComponents.styled(Text)(_templateObject4$b || (_templateObject4$b = _taggedTemplateLiteral(["\n width: 630px;\n color: rgba(255, 255, 255, 0.55);\n text-align: center;\n @media screen and (max-width: 760px) {\n width: 310px;\n }\n"])));
15798
+ var ApplyForIdoButton = styledComponents.styled(Button$1)(_templateObject5$9 || (_templateObject5$9 = _taggedTemplateLiteral(["\n width: 161px;\n height: 44px;\n border-radius: 10px;\n background: #12ffb8;\n margin-top: 45px;\n"])));
15799
15799
  var SpacePadLaunch = function SpacePadLaunch(_ref3) {
15800
15800
  var title = _ref3.title,
15801
15801
  description = _ref3.description,
@@ -15825,14 +15825,14 @@ var SpacePadLaunch = function SpacePadLaunch(_ref3) {
15825
15825
  };
15826
15826
 
15827
15827
  var _templateObject$r;
15828
- var ReferralTitle = styled(Text)(_templateObject$r || (_templateObject$r = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 32px;\n line-height: 130%;\n color: ", ";\n"])), function (_ref) {
15828
+ var ReferralTitle = styledComponents.styled(Text)(_templateObject$r || (_templateObject$r = _taggedTemplateLiteral(["\n font-weight: bold;\n font-size: 32px;\n line-height: 130%;\n color: ", ";\n"])), function (_ref) {
15829
15829
  var fontColor = _ref.fontColor;
15830
15830
  return fontColor || "#ffffff";
15831
15831
  });
15832
15832
 
15833
15833
  var _templateObject$q, _templateObject2$k;
15834
- var ReferralBannerWrapper = styled.div(_templateObject$q || (_templateObject$q = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n"])));
15835
- var InvitationDescription = styled(Text)(_templateObject2$k || (_templateObject2$k = _taggedTemplateLiteral(["\n font-weight: normal;\n font-size: 16px;\n line-height: 24px;\n color: #818c92;\n margin-bottom: 24px;\n"])));
15834
+ var ReferralBannerWrapper = styledComponents.styled.div(_templateObject$q || (_templateObject$q = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n"])));
15835
+ var InvitationDescription = styledComponents.styled(Text)(_templateObject2$k || (_templateObject2$k = _taggedTemplateLiteral(["\n font-weight: normal;\n font-size: 16px;\n line-height: 24px;\n color: #818c92;\n margin-bottom: 24px;\n"])));
15836
15836
  var ReferralBanner = function ReferralBanner(props) {
15837
15837
  var refFee = props.refFee,
15838
15838
  onReadMore = props.onReadMore,
@@ -15898,18 +15898,18 @@ var copyValueToClipboard = function copyValueToClipboard(value, copyCallback) {
15898
15898
  };
15899
15899
 
15900
15900
  var _templateObject$p, _templateObject2$j, _templateObject3$e, _templateObject4$a, _templateObject5$8, _templateObject6$5;
15901
- var TableCard = styled(Card)(_templateObject$p || (_templateObject$p = _taggedTemplateLiteral(["\n border: none;\n padding: 15px;\n width: 100%;\n margin-bottom: 24px;\n ", " {\n padding: 25px 30px;\n }\n"])), function (_ref) {
15901
+ var TableCard = styledComponents.styled(Card)(_templateObject$p || (_templateObject$p = _taggedTemplateLiteral(["\n border: none;\n padding: 15px;\n width: 100%;\n margin-bottom: 24px;\n ", " {\n padding: 25px 30px;\n }\n"])), function (_ref) {
15902
15902
  var theme = _ref.theme;
15903
15903
  return theme.mediaQueries.sm;
15904
15904
  });
15905
- var CopyLinkCardWrapper = styled(TableCard)(_templateObject2$j || (_templateObject2$j = _taggedTemplateLiteral(["\n background: #1d1d26;\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n"])));
15906
- var MyReferralCard = styled(TableCard)(_templateObject3$e || (_templateObject3$e = _taggedTemplateLiteral(["\n background: #16161d;\n display: flex;\n justify-content: space-between;\n align-items: center;\n grid-column: span 6;\n ", " {\n grid-column: span 7;\n }\n"])), function (_ref2) {
15905
+ var CopyLinkCardWrapper = styledComponents.styled(TableCard)(_templateObject2$j || (_templateObject2$j = _taggedTemplateLiteral(["\n background: #1d1d26;\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n"])));
15906
+ var MyReferralCard = styledComponents.styled(TableCard)(_templateObject3$e || (_templateObject3$e = _taggedTemplateLiteral(["\n background: #16161d;\n display: flex;\n justify-content: space-between;\n align-items: center;\n grid-column: span 6;\n ", " {\n grid-column: span 7;\n }\n"])), function (_ref2) {
15907
15907
  var theme = _ref2.theme;
15908
15908
  return theme.mediaQueries.sm;
15909
15909
  });
15910
- var RefLink = styled(Text)(_templateObject4$a || (_templateObject4$a = _taggedTemplateLiteral(["\n display: inline;\n align-items: center;\n text-overflow: ellipsis;\n width: 80%;\n overflow: hidden;\n white-space: nowrap;\n height: max-content;\n font-weight: 600;\n font-size: 16px;\n line-height: 24px;\n"])));
15911
- var SocialRow = styled.div(_templateObject5$8 || (_templateObject5$8 = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n justify-content: flex-start;\n"])));
15912
- var ShareText = styled(Text)(_templateObject6$5 || (_templateObject6$5 = _taggedTemplateLiteral(["\n font-weight: 700;\n font-size: 14px;\n line-height: 170%;\n color: #ffffff;\n margin-right: 32px;\n"])));
15910
+ var RefLink = styledComponents.styled(Text)(_templateObject4$a || (_templateObject4$a = _taggedTemplateLiteral(["\n display: inline;\n align-items: center;\n text-overflow: ellipsis;\n width: 80%;\n overflow: hidden;\n white-space: nowrap;\n height: max-content;\n font-weight: 600;\n font-size: 16px;\n line-height: 24px;\n"])));
15911
+ var SocialRow = styledComponents.styled.div(_templateObject5$8 || (_templateObject5$8 = _taggedTemplateLiteral(["\n display: flex;\n align-items: center;\n justify-content: flex-start;\n"])));
15912
+ var ShareText = styledComponents.styled(Text)(_templateObject6$5 || (_templateObject6$5 = _taggedTemplateLiteral(["\n font-weight: 700;\n font-size: 14px;\n line-height: 170%;\n color: #ffffff;\n margin-right: 32px;\n"])));
15913
15913
  var CopyLinkCard = function CopyLinkCard(_ref3) {
15914
15914
  var refLink = _ref3.refLink;
15915
15915
  var _useState = React.useState(false),
@@ -16656,11 +16656,11 @@ var IconModule = /*#__PURE__*/Object.freeze({
16656
16656
  });
16657
16657
 
16658
16658
  var _templateObject$o, _templateObject2$i;
16659
- var StyledLink = styled(reactRouterDom.Link)(_templateObject$o || (_templateObject$o = _taggedTemplateLiteral(["\n display: flex;\n display: -webkit-flex;\n align-items: center;\n -webkit-align-items: center;\n .mobile-icon {\n width: 32px;\n margin-left: 10px;\n }\n .desktop-icon {\n width: 156px;\n display: none;\n ", " {\n display: block;\n }\n }\n margin-left: 0px;\n"])), function (_ref) {
16659
+ var StyledLink = styledComponents.styled(reactRouterDom.Link)(_templateObject$o || (_templateObject$o = _taggedTemplateLiteral(["\n display: flex;\n display: -webkit-flex;\n align-items: center;\n -webkit-align-items: center;\n .mobile-icon {\n width: 32px;\n margin-left: 10px;\n }\n .desktop-icon {\n width: 156px;\n display: none;\n ", " {\n display: block;\n }\n }\n margin-left: 0px;\n"])), function (_ref) {
16660
16660
  var theme = _ref.theme;
16661
16661
  return theme.mediaQueries.nav;
16662
16662
  });
16663
- var CoinswapLogo = styled.div(_templateObject2$i || (_templateObject2$i = _taggedTemplateLiteral(["\n opacity: ", ";\n width: ", ";\n transition: width 0.6s, opacity 0.3s;\n"])), function (_ref2) {
16663
+ var CoinswapLogo = styledComponents.styled.div(_templateObject2$i || (_templateObject2$i = _taggedTemplateLiteral(["\n opacity: ", ";\n width: ", ";\n transition: width 0.6s, opacity 0.3s;\n"])), function (_ref2) {
16664
16664
  var isPushed = _ref2.isPushed;
16665
16665
  return isPushed ? 1 : 0;
16666
16666
  }, function (_ref3) {
@@ -16854,8 +16854,8 @@ var SIDEBAR_WIDTH_FULL = 240;
16854
16854
  var SIDEBAR_WIDTH_REDUCED = 70;
16855
16855
 
16856
16856
  var _templateObject$n, _templateObject2$h, _templateObject3$d;
16857
- var rainbowAnimation = styled.keyframes(_templateObject$n || (_templateObject$n = _taggedTemplateLiteral(["\n 0%,\n 100% {\n background-position: 0 0;\n }\n 50% {\n background-position: 100% 0;\n }\n"])));
16858
- var LinkLabel = styled.div(_templateObject2$h || (_templateObject2$h = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n color: ", ";\n transition: all 0.7s;\n flex-grow: 1;\n font-weight: 700;\n font-size: 14px;\n width: 100%;\n opacity: ", ";\n"])), function (_ref) {
16857
+ var rainbowAnimation = styledComponents.keyframes(_templateObject$n || (_templateObject$n = _taggedTemplateLiteral(["\n 0%,\n 100% {\n background-position: 0 0;\n }\n 50% {\n background-position: 100% 0;\n }\n"])));
16858
+ var LinkLabel = styledComponents.styled.div(_templateObject2$h || (_templateObject2$h = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n color: ", ";\n transition: all 0.7s;\n flex-grow: 1;\n font-weight: 700;\n font-size: 14px;\n width: 100%;\n opacity: ", ";\n"])), function (_ref) {
16859
16859
  var isPushed = _ref.isPushed,
16860
16860
  isActive = _ref.isActive;
16861
16861
  return !isPushed ? "transparent" : isActive ? "rgba(255, 255, 255, 1)" : "rgba(255, 255, 255, 0.5)";
@@ -16863,7 +16863,7 @@ var LinkLabel = styled.div(_templateObject2$h || (_templateObject2$h = _taggedTe
16863
16863
  var isPushed = _ref2.isPushed;
16864
16864
  return isPushed ? "1" : "0";
16865
16865
  });
16866
- var MenuEntry = styled.div(_templateObject3$d || (_templateObject3$d = _taggedTemplateLiteral(["\n cursor: pointer;\n display: flex;\n align-items: center;\n height: ", "px;\n width: ", "px;\n padding: ", ";\n font-size: 14px;\n background-color: ", ";\n color: ", ";\n transition: all 0.9s;\n ", " {\n height: 40px;\n }\n\n a {\n display: flex;\n align-items: center;\n width: 100%;\n height: 100%;\n color: ", ";\n font-weight: 700;\n transition: all 0.5s;\n }\n\n .dot {\n height: 5px;\n width: 5px;\n border-radius: 50%;\n display: inline-block;\n background-color: ", ";\n }\n\n svg {\n fill: ", ";\n margin-right: 13px;\n }\n\n &:hover {\n svg {\n path {\n fill: #12ffb8;\n fill-opacity: 1;\n }\n margin-right: ", ";\n }\n div,\n a {\n svg {\n path {\n fill: ", ";\n }\n }\n }\n\n div,\n a {\n color: rgba(255, 255, 255, 1);\n }\n }\n\n // Safari fix\n flex-shrink: 0;\n\n &.rainbow {\n background-clip: text;\n animation: ", " 3s ease-in-out infinite;\n background: ", ";\n background-size: 400% 100%;\n }\n"])), MENU_ENTRY_HEIGHT, SIDEBAR_WIDTH_FULL, function (_ref3) {
16866
+ var MenuEntry = styledComponents.styled.div(_templateObject3$d || (_templateObject3$d = _taggedTemplateLiteral(["\n cursor: pointer;\n display: flex;\n align-items: center;\n height: ", "px;\n width: ", "px;\n padding: ", ";\n font-size: 14px;\n background-color: ", ";\n color: ", ";\n transition: all 0.9s;\n ", " {\n height: 40px;\n }\n\n a {\n display: flex;\n align-items: center;\n width: 100%;\n height: 100%;\n color: ", ";\n font-weight: 700;\n transition: all 0.5s;\n }\n\n .dot {\n height: 5px;\n width: 5px;\n border-radius: 50%;\n display: inline-block;\n background-color: ", ";\n }\n\n svg {\n fill: ", ";\n margin-right: 13px;\n }\n\n &:hover {\n svg {\n path {\n fill: #12ffb8;\n fill-opacity: 1;\n }\n margin-right: ", ";\n }\n div,\n a {\n svg {\n path {\n fill: ", ";\n }\n }\n }\n\n div,\n a {\n color: rgba(255, 255, 255, 1);\n }\n }\n\n // Safari fix\n flex-shrink: 0;\n\n &.rainbow {\n background-clip: text;\n animation: ", " 3s ease-in-out infinite;\n background: ", ";\n background-size: 400% 100%;\n }\n"])), MENU_ENTRY_HEIGHT, SIDEBAR_WIDTH_FULL, function (_ref3) {
16867
16867
  var secondary = _ref3.secondary;
16868
16868
  return secondary ? "0 32px" : "0 25px";
16869
16869
  }, function (_ref4) {
@@ -16903,8 +16903,8 @@ MenuEntry.defaultProps = {
16903
16903
  };
16904
16904
 
16905
16905
  var _templateObject$m, _templateObject2$g, _templateObject3$c;
16906
- var Container$2 = styled.div(_templateObject$m || (_templateObject$m = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n // Safari fix\n flex-shrink: 0;\n"])));
16907
- var AccordionContent = styled.div(_templateObject2$g || (_templateObject2$g = _taggedTemplateLiteral(["\n max-height: ", ";\n transition: max-height 0.3s ease-out;\n overflow-x: hidden;\n overflow-y: scroll;\n border-color: ", ";\n border-style: solid;\n border-width: 1px 0;\n border-bottom: none;\n"])), function (_ref) {
16906
+ var Container$2 = styledComponents.styled.div(_templateObject$m || (_templateObject$m = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n // Safari fix\n flex-shrink: 0;\n"])));
16907
+ var AccordionContent = styledComponents.styled.div(_templateObject2$g || (_templateObject2$g = _taggedTemplateLiteral(["\n max-height: ", ";\n transition: max-height 0.3s ease-out;\n overflow-x: hidden;\n overflow-y: scroll;\n border-color: ", ";\n border-style: solid;\n border-width: 1px 0;\n border-bottom: none;\n"])), function (_ref) {
16908
16908
  var isOpen = _ref.isOpen,
16909
16909
  maxHeight = _ref.maxHeight;
16910
16910
  return isOpen ? "".concat(maxHeight, "px") : 0;
@@ -16913,7 +16913,7 @@ var AccordionContent = styled.div(_templateObject2$g || (_templateObject2$g = _t
16913
16913
  isPushed = _ref2.isPushed;
16914
16914
  return isOpen && isPushed ? "rgba(133, 133, 133, 0.1)" : "transparent";
16915
16915
  });
16916
- var ArrowIcon = styled(Icon$2x)(_templateObject3$c || (_templateObject3$c = _taggedTemplateLiteral(["\n margin-right: -7px !important;\n transform: rotate(", "deg);\n transition: transform 0.4s;\n"])), function (_ref3) {
16916
+ var ArrowIcon = styledComponents.styled(Icon$2x)(_templateObject3$c || (_templateObject3$c = _taggedTemplateLiteral(["\n margin-right: -7px !important;\n transform: rotate(", "deg);\n transition: transform 0.4s;\n"])), function (_ref3) {
16917
16917
  var isOpen = _ref3.isOpen;
16918
16918
  return isOpen ? 0 : 180;
16919
16919
  });
@@ -16988,11 +16988,11 @@ exports.ExtraIcon = void 0;
16988
16988
 
16989
16989
  var _templateObject$l, _templateObject2$f;
16990
16990
  var Icons$2 = IconModule;
16991
- var Container$1 = styled.div(_templateObject$l || (_templateObject$l = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n overflow-y: auto;\n overflow-x: hidden;\n scrollbar-color: ", " transparent;\n scrollbar-width: thin !important;\n"])), function (_ref) {
16991
+ var Container$1 = styledComponents.styled.div(_templateObject$l || (_templateObject$l = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n overflow-y: auto;\n overflow-x: hidden;\n scrollbar-color: ", " transparent;\n scrollbar-width: thin !important;\n"])), function (_ref) {
16992
16992
  var theme = _ref.theme;
16993
16993
  return theme.colors.primary;
16994
16994
  });
16995
- var NewLabel = styled.div(_templateObject2$f || (_templateObject2$f = _taggedTemplateLiteral(["\n display: flex;\n justify-content: center;\n align-items: center;\n color: ", " !important;\n border: solid 1px ", ";\n border-radius: 12px;\n padding: 2px 8px;\n font-size: 10px;\n line-height: 9px;\n font-weight: 700;\n margin-left: 5px;\n text-align: center;\n"])), function (_ref2) {
16995
+ var NewLabel = styledComponents.styled.div(_templateObject2$f || (_templateObject2$f = _taggedTemplateLiteral(["\n display: flex;\n justify-content: center;\n align-items: center;\n color: ", " !important;\n border: solid 1px ", ";\n border-radius: 12px;\n padding: 2px 8px;\n font-size: 10px;\n line-height: 9px;\n font-weight: 700;\n margin-left: 5px;\n text-align: center;\n"])), function (_ref2) {
16996
16996
  var theme = _ref2.theme;
16997
16997
  return theme.colors.primary;
16998
16998
  }, function (_ref3) {
@@ -17097,7 +17097,7 @@ var PanelBody = function PanelBody(_ref4) {
17097
17097
 
17098
17098
  var _excluded$1 = ["startIcon", "endIcon", "children", "external", "isLoading", "disabled"];
17099
17099
  var _templateObject$k;
17100
- var StyledNavButton = styled.button(_templateObject$k || (_templateObject$k = _taggedTemplateLiteral(["\n align-items: center;\n cursor: pointer;\n display: flex;\n justify-content: center;\n font-family: inherit;\n font-size: 16px;\n font-weight: 600;\n /* max-content instead of auto for Safari fix */\n width: ", ";\n height: ", ";\n line-height: 1;\n letter-spacing: 0.03em;\n justify-content: center;\n outline: 0;\n border: none;\n transition: background-color 0.2s;\n background-color: transparent;\n opacity: ", ";\n margin-left: 10px;\n"])), function (_ref) {
17100
+ var StyledNavButton = styledComponents.styled.button(_templateObject$k || (_templateObject$k = _taggedTemplateLiteral(["\n align-items: center;\n cursor: pointer;\n display: flex;\n justify-content: center;\n font-family: inherit;\n font-size: 16px;\n font-weight: 600;\n /* max-content instead of auto for Safari fix */\n width: ", ";\n height: ", ";\n line-height: 1;\n letter-spacing: 0.03em;\n justify-content: center;\n outline: 0;\n border: none;\n transition: background-color 0.2s;\n background-color: transparent;\n opacity: ", ";\n margin-left: 10px;\n"])), function (_ref) {
17101
17101
  var fullWidth = _ref.fullWidth;
17102
17102
  return fullWidth ? "100%" : "max-content";
17103
17103
  }, function (_ref2) {
@@ -17136,7 +17136,7 @@ NavButton.defaultProps = {
17136
17136
  };
17137
17137
 
17138
17138
  var _templateObject$j;
17139
- var MenuButton = styled(NavButton)(_templateObject$j || (_templateObject$j = _taggedTemplateLiteral(["\n color: ", ";\n padding: 0 8px;\n border-radius: 8px;\n"])), function (_ref) {
17139
+ var MenuButton = styledComponents.styled(NavButton)(_templateObject$j || (_templateObject$j = _taggedTemplateLiteral(["\n color: ", ";\n padding: 0 8px;\n border-radius: 8px;\n"])), function (_ref) {
17140
17140
  var theme = _ref.theme;
17141
17141
  return theme.colors.text;
17142
17142
  });
@@ -17179,31 +17179,31 @@ var getLangFlag = function getLangFlag(lang) {
17179
17179
  var _templateObject$i, _templateObject2$e, _templateObject3$b, _templateObject4$9, _templateObject5$7, _templateObject6$4, _templateObject7$2;
17180
17180
  var Icons$1 = IconModule;
17181
17181
  var LanguageIcon = Icons$1.LanguageIcon;
17182
- var LangButton = styled(Button$1)(_templateObject$i || (_templateObject$i = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n position: relative;\n justify-content: flex-start;\n z-index: 9999999;\n border: 1px solid ", ";\n &:hover:not(:disabled):not(.button--disabled):not(:active) {\n border: 1px solid rgba(255, 255, 255, 0.03);\n }\n transition: width 0.6s;\n height: 28px;\n width: ", "px;\n margin-bottom: 15px;\n padding: 0px 10px;\n"])), function (_ref) {
17182
+ var LangButton = styledComponents.styled(Button$1)(_templateObject$i || (_templateObject$i = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n position: relative;\n justify-content: flex-start;\n z-index: 9999999;\n border: 1px solid ", ";\n &:hover:not(:disabled):not(.button--disabled):not(:active) {\n border: 1px solid rgba(255, 255, 255, 0.03);\n }\n transition: width 0.6s;\n height: 28px;\n width: ", "px;\n margin-bottom: 15px;\n padding: 0px 10px;\n"])), function (_ref) {
17183
17183
  var theme = _ref.theme;
17184
17184
  return theme.colors.white3;
17185
17185
  }, function (_ref2) {
17186
17186
  var isPushed = _ref2.isPushed;
17187
17187
  return isPushed ? 80 : 40;
17188
17188
  });
17189
- var LangModal = styled.div(_templateObject2$e || (_templateObject2$e = _taggedTemplateLiteral(["\n position: absolute;\n display: ", "};\n bottom: 45px;\n left: 0px;\n background: ", ";\n border: 1px solid rgba(255, 255, 255, 0.03);\n width: 267px;\n height: auto;\n padding: 27px 17px 27px 27px;\n border-radius: 15px;\n"])), function (_ref3) {
17189
+ var LangModal = styledComponents.styled.div(_templateObject2$e || (_templateObject2$e = _taggedTemplateLiteral(["\n position: absolute;\n display: ", "};\n bottom: 45px;\n left: 0px;\n background: ", ";\n border: 1px solid rgba(255, 255, 255, 0.03);\n width: 267px;\n height: auto;\n padding: 27px 17px 27px 27px;\n border-radius: 15px;\n"])), function (_ref3) {
17190
17190
  var display = _ref3.display;
17191
17191
  return display ? "block" : "none";
17192
17192
  }, function (_ref4) {
17193
17193
  var theme = _ref4.theme;
17194
17194
  return theme.backgrounds.primary;
17195
17195
  });
17196
- var LangsList = styled.div(_templateObject3$b || (_templateObject3$b = _taggedTemplateLiteral(["\n max-height: 170px;\n overflow-y: scroll;\n &::-webkit-scrollbar {\n width: 5px !important;\n }\n &::-webkit-scrollbar-thumb {\n background: ", " !important;\n border-radius: 8px;\n }\n &::-webkit-scrollbar-track {\n box-shadow: inset 0 0 5px ", ";\n border-radius: 3px;\n }\n"])), function (_ref5) {
17196
+ var LangsList = styledComponents.styled.div(_templateObject3$b || (_templateObject3$b = _taggedTemplateLiteral(["\n max-height: 170px;\n overflow-y: scroll;\n &::-webkit-scrollbar {\n width: 5px !important;\n }\n &::-webkit-scrollbar-thumb {\n background: ", " !important;\n border-radius: 8px;\n }\n &::-webkit-scrollbar-track {\n box-shadow: inset 0 0 5px ", ";\n border-radius: 3px;\n }\n"])), function (_ref5) {
17197
17197
  var theme = _ref5.theme;
17198
17198
  return theme.colors.white55;
17199
17199
  }, function (_ref6) {
17200
17200
  var theme = _ref6.theme;
17201
17201
  return theme.colors.white30;
17202
17202
  });
17203
- var TitleContainer = styled.div(_templateObject4$9 || (_templateObject4$9 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n align-items: center;\n margin-bottom: 10px;\n"])));
17204
- var ButtonContainer$1 = styled.div(_templateObject5$7 || (_templateObject5$7 = _taggedTemplateLiteral(["\n width: 100%;\n text-align: start;\n padding: 0px 8px;\n"])));
17205
- var LangText = styled(Text)(_templateObject6$4 || (_templateObject6$4 = _taggedTemplateLiteral(["\n font-size: 14px;\n margin-left: 12px;\n"])));
17206
- var MainLangText = styled(Text)(_templateObject7$2 || (_templateObject7$2 = _taggedTemplateLiteral(["\n opacity: ", ";\n width: ", ";\n transition: width 0.6s, opacity 0.3s;\n"])), function (_ref7) {
17203
+ var TitleContainer = styledComponents.styled.div(_templateObject4$9 || (_templateObject4$9 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n align-items: center;\n margin-bottom: 10px;\n"])));
17204
+ var ButtonContainer$1 = styledComponents.styled.div(_templateObject5$7 || (_templateObject5$7 = _taggedTemplateLiteral(["\n width: 100%;\n text-align: start;\n padding: 0px 8px;\n"])));
17205
+ var LangText = styledComponents.styled(Text)(_templateObject6$4 || (_templateObject6$4 = _taggedTemplateLiteral(["\n font-size: 14px;\n margin-left: 12px;\n"])));
17206
+ var MainLangText = styledComponents.styled(Text)(_templateObject7$2 || (_templateObject7$2 = _taggedTemplateLiteral(["\n opacity: ", ";\n width: ", ";\n transition: width 0.6s, opacity 0.3s;\n"])), function (_ref7) {
17207
17207
  var isPushed = _ref7.isPushed;
17208
17208
  return isPushed ? 1 : 0;
17209
17209
  }, function (_ref8) {
@@ -17312,8 +17312,8 @@ var LangSelector$1 = /*#__PURE__*/React.memo(LangSelector, function (prev, next)
17312
17312
  });
17313
17313
 
17314
17314
  var _templateObject$h, _templateObject2$d;
17315
- var Container = styled.div(_templateObject$h || (_templateObject$h = _taggedTemplateLiteral(["\n flex: none;\n padding: 5px 5px 20px 5px;\n background-color: transparent;\n position: relative;\n width: 100%;\n margin-top: 15px;\n"])));
17316
- var SettingsEntry = styled.div(_templateObject2$d || (_templateObject2$d = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n height: auto;\n"])));
17315
+ var Container = styledComponents.styled.div(_templateObject$h || (_templateObject$h = _taggedTemplateLiteral(["\n flex: none;\n padding: 5px 5px 20px 5px;\n background-color: transparent;\n position: relative;\n width: 100%;\n margin-top: 15px;\n"])));
17316
+ var SettingsEntry = styledComponents.styled.div(_templateObject2$d || (_templateObject2$d = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n height: auto;\n"])));
17317
17317
  var PanelFooter = function PanelFooter(_ref) {
17318
17318
  var isPushed = _ref.isPushed;
17319
17319
  _ref.pushNav;
@@ -17339,22 +17339,22 @@ var PanelFooter = function PanelFooter(_ref) {
17339
17339
  };
17340
17340
 
17341
17341
  var _templateObject$g;
17342
- var MobileEntry = styled.div(_templateObject$g || (_templateObject$g = _taggedTemplateLiteral(["\n &:hover {\n div,\n a {\n svg {\n path {\n fill: ", ";\n }\n }\n }\n\n div,\n a {\n color: rgba(255, 255, 255, 1);\n }\n }\n"])), function (_ref) {
17342
+ var MobileEntry = styledComponents.styled.div(_templateObject$g || (_templateObject$g = _taggedTemplateLiteral(["\n &:hover {\n div,\n a {\n svg {\n path {\n fill: ", ";\n }\n }\n }\n\n div,\n a {\n color: rgba(255, 255, 255, 1);\n }\n }\n"])), function (_ref) {
17343
17343
  var theme = _ref.theme;
17344
17344
  return theme.colors.primary;
17345
17345
  });
17346
17346
 
17347
17347
  var _templateObject$f, _templateObject2$c, _templateObject3$a;
17348
17348
  var MOBILE_MENU_PANEL_HEIGHT = 83;
17349
- var MobileMenuContainer = styled.div(_templateObject$f || (_templateObject$f = _taggedTemplateLiteral(["\n position: fixed;\n bottom: 0px;\n width: 100%;\n right: 0px;\n left: 0px;\n z-index: 98;\n height: ", "px;\n display: none;\n flex-direction: row;\n justify-content: space-around;\n align-items: center;\n background: ", ";\n ", " {\n display: flex;\n }\n"])), MOBILE_MENU_PANEL_HEIGHT, function (_ref) {
17349
+ var MobileMenuContainer = styledComponents.styled.div(_templateObject$f || (_templateObject$f = _taggedTemplateLiteral(["\n position: fixed;\n bottom: 0px;\n width: 100%;\n right: 0px;\n left: 0px;\n z-index: 98;\n height: ", "px;\n display: none;\n flex-direction: row;\n justify-content: space-around;\n align-items: center;\n background: ", ";\n ", " {\n display: flex;\n }\n"])), MOBILE_MENU_PANEL_HEIGHT, function (_ref) {
17350
17350
  var theme = _ref.theme;
17351
17351
  return theme.colors.card;
17352
17352
  }, function (_ref2) {
17353
17353
  var theme = _ref2.theme;
17354
17354
  return theme.mediaQueries.mobile;
17355
17355
  });
17356
- var MobileLink = styled(MenuLink)(_templateObject2$c || (_templateObject2$c = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n justify-items: soace-between;\n align-items: center;\n"])));
17357
- var MenuLinkLabel = styled.div(_templateObject3$a || (_templateObject3$a = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n font-weight: 700;\n font-size: 9px;\n color: white;\n"])));
17356
+ var MobileLink = styledComponents.styled(MenuLink)(_templateObject2$c || (_templateObject2$c = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n justify-items: soace-between;\n align-items: center;\n"])));
17357
+ var MenuLinkLabel = styledComponents.styled.div(_templateObject3$a || (_templateObject3$a = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n font-weight: 700;\n font-size: 9px;\n color: white;\n"])));
17358
17358
  var Icons = IconModule;
17359
17359
  var MobileMenu = function MobileMenu(_ref3) {
17360
17360
  var links = _ref3.links,
@@ -17390,7 +17390,7 @@ var MobileMenu = function MobileMenu(_ref3) {
17390
17390
  };
17391
17391
 
17392
17392
  var _templateObject$e, _templateObject2$b;
17393
- var StyledPanel = styled.div(_templateObject$e || (_templateObject$e = _taggedTemplateLiteral(["\n position: fixed;\n padding-top: 100px;\n top: 0;\n left: 0;\n flex-direction: column;\n justify-content: space-between;\n flex-shrink: 0;\n background-color: #191921;\n width: ", ";\n height: 100vh;\n transition: padding-top 0.2s, width 0.6s, box-shadow 0.4s;\n z-index: 11;\n overflow: ", ";\n transform: translate3d(0, 0, 0);\n ", " {\n width: ", ";\n padding-top: 100px;\n margin-top: 0px;\n transition: none;\n overflow-y: auto;\n padding-bottom: ", "px;\n }\n"])), function (_ref) {
17393
+ var StyledPanel = styledComponents.styled.div(_templateObject$e || (_templateObject$e = _taggedTemplateLiteral(["\n position: fixed;\n padding-top: 100px;\n top: 0;\n left: 0;\n flex-direction: column;\n justify-content: space-between;\n flex-shrink: 0;\n background-color: #191921;\n width: ", ";\n height: 100vh;\n transition: padding-top 0.2s, width 0.6s, box-shadow 0.4s;\n z-index: 11;\n overflow: ", ";\n transform: translate3d(0, 0, 0);\n ", " {\n width: ", ";\n padding-top: 100px;\n margin-top: 0px;\n transition: none;\n overflow-y: auto;\n padding-bottom: ", "px;\n }\n"])), function (_ref) {
17394
17394
  var isPushed = _ref.isPushed;
17395
17395
  return "".concat(isPushed ? SIDEBAR_WIDTH_FULL : SIDEBAR_WIDTH_REDUCED, "px");
17396
17396
  }, function (_ref2) {
@@ -17403,7 +17403,7 @@ var StyledPanel = styled.div(_templateObject$e || (_templateObject$e = _taggedTe
17403
17403
  var isPushed = _ref4.isPushed;
17404
17404
  return isPushed ? "100%" : "0px";
17405
17405
  }, MOBILE_MENU_PANEL_HEIGHT);
17406
- var RowSplitter = styled.div(_templateObject2$b || (_templateObject2$b = _taggedTemplateLiteral(["\n border: 1px solid #252530;\n margin: ", ";\n"])), function (_ref5) {
17406
+ var RowSplitter = styledComponents.styled.div(_templateObject2$b || (_templateObject2$b = _taggedTemplateLiteral(["\n border: 1px solid #252530;\n margin: ", ";\n"])), function (_ref5) {
17407
17407
  var isPushed = _ref5.isPushed;
17408
17408
  return isPushed ? "20px" : "20px 15px";
17409
17409
  });
@@ -17426,11 +17426,11 @@ var Panel = function Panel(props) {
17426
17426
  };
17427
17427
 
17428
17428
  var _templateObject$d, _templateObject2$a, _templateObject3$9, _templateObject4$8, _templateObject5$6;
17429
- var Space = styled.div(_templateObject$d || (_templateObject$d = _taggedTemplateLiteral(["\n width: 30px;\n"])));
17430
- var DisclaimerContainer = styled.div(_templateObject2$a || (_templateObject2$a = _taggedTemplateLiteral(["\n max-width: 430px;\n"])));
17431
- var CheckBoxContainer = styled.div(_templateObject3$9 || (_templateObject3$9 = _taggedTemplateLiteral(["\n width: 20%;\n display: flex;\n justify-content: center;\n align-items: center;\n"])));
17432
- var ButtonContainer = styled.div(_templateObject4$8 || (_templateObject4$8 = _taggedTemplateLiteral(["\n margin-top: 25px;\n"])));
17433
- var ListContainer = styled.div(_templateObject5$6 || (_templateObject5$6 = _taggedTemplateLiteral(["\n font-size: 13px;\n color: white;\n margin-bottom: 10px;\n padding-left: 14px;\n ul li {\n list-style-position: outside;\n padding: 4px;\n line-height: 17px;\n }\n"])));
17429
+ var Space = styledComponents.styled.div(_templateObject$d || (_templateObject$d = _taggedTemplateLiteral(["\n width: 30px;\n"])));
17430
+ var DisclaimerContainer = styledComponents.styled.div(_templateObject2$a || (_templateObject2$a = _taggedTemplateLiteral(["\n max-width: 430px;\n"])));
17431
+ var CheckBoxContainer = styledComponents.styled.div(_templateObject3$9 || (_templateObject3$9 = _taggedTemplateLiteral(["\n width: 20%;\n display: flex;\n justify-content: center;\n align-items: center;\n"])));
17432
+ var ButtonContainer = styledComponents.styled.div(_templateObject4$8 || (_templateObject4$8 = _taggedTemplateLiteral(["\n margin-top: 25px;\n"])));
17433
+ var ListContainer = styledComponents.styled.div(_templateObject5$6 || (_templateObject5$6 = _taggedTemplateLiteral(["\n font-size: 13px;\n color: white;\n margin-bottom: 10px;\n padding-left: 14px;\n ul li {\n list-style-position: outside;\n padding: 4px;\n line-height: 17px;\n }\n"])));
17434
17434
  var DiclaimerModal = function DiclaimerModal(_ref) {
17435
17435
  var _ref$onDismiss = _ref.onDismiss,
17436
17436
  onDismiss = _ref$onDismiss === void 0 ? function () {
@@ -17673,12 +17673,12 @@ var useAutoDisclaimer = function useAutoDisclaimer(_ref) {
17673
17673
  };
17674
17674
 
17675
17675
  var _templateObject$c, _templateObject2$9, _templateObject3$8, _templateObject4$7, _templateObject5$5;
17676
- var UserBlockWrapper = styled.div(_templateObject$c || (_templateObject$c = _taggedTemplateLiteral(["\n display: flex;\n justify-content: flex-end;\n\n @media (max-width: 608px) {\n flex: 100%;\n }\n"])));
17677
- var ConnectButton = styled(Button$1)(_templateObject2$9 || (_templateObject2$9 = _taggedTemplateLiteral(["\n color: black;\n width: 180px;\n box-shadow: 0px 9px 63px rgba(18, 255, 184, 0.22);\n font-weight: 700;\n height: 40px;\n ", " {\n width: 113px;\n height: 31px;\n font-size: 11px;\n padding: 0px 10px;\n }\n"])), function (_ref) {
17676
+ var UserBlockWrapper = styledComponents.styled.div(_templateObject$c || (_templateObject$c = _taggedTemplateLiteral(["\n display: flex;\n justify-content: flex-end;\n\n @media (max-width: 608px) {\n flex: 100%;\n }\n"])));
17677
+ var ConnectButton = styledComponents.styled(Button$1)(_templateObject2$9 || (_templateObject2$9 = _taggedTemplateLiteral(["\n color: black;\n width: 180px;\n box-shadow: 0px 9px 63px rgba(18, 255, 184, 0.22);\n font-weight: 700;\n height: 40px;\n ", " {\n width: 113px;\n height: 31px;\n font-size: 11px;\n padding: 0px 10px;\n }\n"])), function (_ref) {
17678
17678
  var theme = _ref.theme;
17679
17679
  return theme.mediaQueries.mobile;
17680
17680
  });
17681
- var AccountButton = styled(Button$1)(_templateObject3$8 || (_templateObject3$8 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: ", ";\n align-items: ", ";\n color: white;\n padding: 10px;\n height: 40px;\n width: 144px;\n background: #2b2b38;\n ", " {\n height: 31px;\n width: 116px;\n font-size: 11px;\n padding: 0px 10px;\n }\n"])), function (_ref2) {
17681
+ var AccountButton = styledComponents.styled(Button$1)(_templateObject3$8 || (_templateObject3$8 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: ", ";\n align-items: ", ";\n color: white;\n padding: 10px;\n height: 40px;\n width: 144px;\n background: #2b2b38;\n ", " {\n height: 31px;\n width: 116px;\n font-size: 11px;\n padding: 0px 10px;\n }\n"])), function (_ref2) {
17682
17682
  var isUserVerified = _ref2.isUserVerified;
17683
17683
  return isUserVerified ? "row" : "column-reverse";
17684
17684
  }, function (_ref3) {
@@ -17688,11 +17688,11 @@ var AccountButton = styled(Button$1)(_templateObject3$8 || (_templateObject3$8 =
17688
17688
  var theme = _ref4.theme;
17689
17689
  return theme.mediaQueries.mobile;
17690
17690
  });
17691
- var VerifyAddressIndicator = styled(Text)(_templateObject4$7 || (_templateObject4$7 = _taggedTemplateLiteral(["\n color: #f6465d;\n ", " {\n font-size: 10px;\n }\n"])), function (_ref5) {
17691
+ var VerifyAddressIndicator = styledComponents.styled(Text)(_templateObject4$7 || (_templateObject4$7 = _taggedTemplateLiteral(["\n color: #f6465d;\n ", " {\n font-size: 10px;\n }\n"])), function (_ref5) {
17692
17692
  var theme = _ref5.theme;
17693
17693
  return theme.mediaQueries.mobile;
17694
17694
  });
17695
- var Account = styled(Text)(_templateObject5$5 || (_templateObject5$5 = _taggedTemplateLiteral(["\n margin-bottom: ", ";\n ", " {\n font-size: 10px;\n }\n"])), function (_ref6) {
17695
+ var Account = styledComponents.styled(Text)(_templateObject5$5 || (_templateObject5$5 = _taggedTemplateLiteral(["\n margin-bottom: ", ";\n ", " {\n font-size: 10px;\n }\n"])), function (_ref6) {
17696
17696
  var isUserVerified = _ref6.isUserVerified;
17697
17697
  return !isUserVerified && "-5px";
17698
17698
  }, function (_ref7) {
@@ -17745,7 +17745,7 @@ var UserBlock = function UserBlock(_ref8) {
17745
17745
  };
17746
17746
 
17747
17747
  var _templateObject$b, _templateObject2$8, _templateObject3$7;
17748
- var BellBoxWrapper = styled.div(_templateObject$b || (_templateObject$b = _taggedTemplateLiteral(["\n height: 40px;\n width: 50px;\n overflow: visible;\n cursor: pointer;\n margin-right: 28px;\n display: ", ";\n z-index: 999;\n ", " {\n display: ", ";\n position: fixed;\n bottom: 107px;\n left: initial;\n right: 0px;\n height: 50px;\n }\n"])), function (_ref) {
17748
+ var BellBoxWrapper = styledComponents.styled.div(_templateObject$b || (_templateObject$b = _taggedTemplateLiteral(["\n height: 40px;\n width: 50px;\n overflow: visible;\n cursor: pointer;\n margin-right: 28px;\n display: ", ";\n z-index: 999;\n ", " {\n display: ", ";\n position: fixed;\n bottom: 107px;\n left: initial;\n right: 0px;\n height: 50px;\n }\n"])), function (_ref) {
17749
17749
  var mobile = _ref.mobile;
17750
17750
  return mobile ? "none" : "block";
17751
17751
  }, function (_ref2) {
@@ -17756,7 +17756,7 @@ var BellBoxWrapper = styled.div(_templateObject$b || (_templateObject$b = _tagge
17756
17756
  hasMsg = _ref3.hasMsg;
17757
17757
  return mobile && hasMsg ? "block" : "none";
17758
17758
  });
17759
- var BellBox = styled(Link)(_templateObject2$8 || (_templateObject2$8 = _taggedTemplateLiteral(["\n position: relative;\n display: flex;\n justify-content: center;\n align-items: center;\n height: 100%;\n width: 100%;\n border: 1px solid ", ";\n border-radius: 10px;\n background: ", ";\n box-sizing: border-box;\n ", " {\n border-radius: 50%;\n }\n ", "\n ", "\n"])), function (_ref4) {
17759
+ var BellBox = styledComponents.styled(Link)(_templateObject2$8 || (_templateObject2$8 = _taggedTemplateLiteral(["\n position: relative;\n display: flex;\n justify-content: center;\n align-items: center;\n height: 100%;\n width: 100%;\n border: 1px solid ", ";\n border-radius: 10px;\n background: ", ";\n box-sizing: border-box;\n ", " {\n border-radius: 50%;\n }\n ", "\n ", "\n"])), function (_ref4) {
17760
17760
  var hasMsg = _ref4.hasMsg,
17761
17761
  theme = _ref4.theme;
17762
17762
  return hasMsg ? "#1AC8FF" : theme.backgrounds.secondary;
@@ -17774,7 +17774,7 @@ var BellBox = styled(Link)(_templateObject2$8 || (_templateObject2$8 = _taggedTe
17774
17774
  var hasMsg = _ref8.hasMsg;
17775
17775
  return hasMsg && "\n box-shadow: 0px 0px 14px 3px rgba(46, 124, 246, 0.25);\n ";
17776
17776
  });
17777
- var NotificationNumber = styled.div(_templateObject3$7 || (_templateObject3$7 = _taggedTemplateLiteral(["\n position: absolute;\n top: 4px;\n right: 3px;\n display: flex;\n justify-content: center;\n align-items: center;\n width: 18.46px;\n height: 18.46px;\n background: #de4040;\n border-radius: 50%;\n opacity: ", ";\n transition: all 0.25s ease-in-out;\n animation: stretch 2s infinite;\n ", " {\n top: 12.25px;\n right: 7px;\n }\n @keyframes stretch {\n 0% {\n transform: scale(1);\n }\n\n 50% {\n transform: scale(1.2);\n }\n\n 100% {\n transform: scale(1);\n }\n }\n"])), function (_ref9) {
17777
+ var NotificationNumber = styledComponents.styled.div(_templateObject3$7 || (_templateObject3$7 = _taggedTemplateLiteral(["\n position: absolute;\n top: 4px;\n right: 3px;\n display: flex;\n justify-content: center;\n align-items: center;\n width: 18.46px;\n height: 18.46px;\n background: #de4040;\n border-radius: 50%;\n opacity: ", ";\n transition: all 0.25s ease-in-out;\n animation: stretch 2s infinite;\n ", " {\n top: 12.25px;\n right: 7px;\n }\n @keyframes stretch {\n 0% {\n transform: scale(1);\n }\n\n 50% {\n transform: scale(1.2);\n }\n\n 100% {\n transform: scale(1);\n }\n }\n"])), function (_ref9) {
17778
17778
  var hasMsg = _ref9.hasMsg;
17779
17779
  return hasMsg ? 1 : 0;
17780
17780
  }, function (_ref0) {
@@ -17812,7 +17812,7 @@ var BellNotifier = function BellNotifier(_ref1) {
17812
17812
  };
17813
17813
 
17814
17814
  var _templateObject$a, _templateObject2$7, _templateObject3$6, _templateObject4$6;
17815
- var CryptoDropdownWrapper = styled.button(_templateObject$a || (_templateObject$a = _taggedTemplateLiteral(["\n padding: ", "px;\n outline: none;\n border: none;\n width: ", "px;\n height: 40px;\n background: #2b2b38;\n border-radius: 10px;\n display: flex;\n flex-direction: row;\n justify-content: space-around;\n align-items: center;\n color: black;\n cursor: pointer;\n position: relative;\n &:active {\n background: ", ";\n }\n ", " {\n width: 113px;\n height: 31px;\n font-size: 11px;\n padding: 0px 10px;\n margin: 0 6px;\n }\n transition: all 0.5s ease-in;\n"])), function (props) {
17815
+ var CryptoDropdownWrapper = styledComponents.styled.button(_templateObject$a || (_templateObject$a = _taggedTemplateLiteral(["\n padding: ", "px;\n outline: none;\n border: none;\n width: ", "px;\n height: 40px;\n background: #2b2b38;\n border-radius: 10px;\n display: flex;\n flex-direction: row;\n justify-content: space-around;\n align-items: center;\n color: black;\n cursor: pointer;\n position: relative;\n &:active {\n background: ", ";\n }\n ", " {\n width: 113px;\n height: 31px;\n font-size: 11px;\n padding: 0px 10px;\n margin: 0 6px;\n }\n transition: all 0.5s ease-in;\n"])), function (props) {
17816
17816
  return props.extended ? "6px 5px 6px 10px" : "10px";
17817
17817
  }, function (props) {
17818
17818
  return props.extended ? 130 : 70;
@@ -17823,7 +17823,7 @@ var CryptoDropdownWrapper = styled.button(_templateObject$a || (_templateObject$
17823
17823
  var theme = _ref2.theme;
17824
17824
  return theme.mediaQueries.mobile;
17825
17825
  });
17826
- var ButtonsContainer = styled.div(_templateObject2$7 || (_templateObject2$7 = _taggedTemplateLiteral(["\n position: absolute;\n width: 159px;\n height: 89px;\n top: 53px;\n right: 0px;\n background: ", ";\n border: 1px solid ", ";\n box-sizing: border-box;\n opacity: ", ";\n display: flex;\n z-index: ", "999;\n transition-property: opacity, box-shadow;\n transition-duration: 0.5s, 0.3s;\n box-shadow: 0px 0px 24px -11px rgba(0, 0, 0, 0.25);\n border-radius: 10px;\n flex-direction: column;\n justify-content: space-between;\n align-items: center;\n ", " {\n display: ", ";\n }\n"])), function (_ref3) {
17826
+ var ButtonsContainer = styledComponents.styled.div(_templateObject2$7 || (_templateObject2$7 = _taggedTemplateLiteral(["\n position: absolute;\n width: 159px;\n height: 89px;\n top: 53px;\n right: 0px;\n background: ", ";\n border: 1px solid ", ";\n box-sizing: border-box;\n opacity: ", ";\n display: flex;\n z-index: ", "999;\n transition-property: opacity, box-shadow;\n transition-duration: 0.5s, 0.3s;\n box-shadow: 0px 0px 24px -11px rgba(0, 0, 0, 0.25);\n border-radius: 10px;\n flex-direction: column;\n justify-content: space-between;\n align-items: center;\n ", " {\n display: ", ";\n }\n"])), function (_ref3) {
17827
17827
  var theme = _ref3.theme;
17828
17828
  return theme.backgrounds.secondary;
17829
17829
  }, function (_ref4) {
@@ -17839,8 +17839,8 @@ var ButtonsContainer = styled.div(_templateObject2$7 || (_templateObject2$7 = _t
17839
17839
  }, function (props) {
17840
17840
  return props.visible ? "flex" : "none";
17841
17841
  });
17842
- var ButtonRow = styled(Link)(_templateObject3$6 || (_templateObject3$6 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n padding: 11px;\n width: 100%;\n height: 100%;\n overflow: visible;\n z-index: 99999;\n svg {\n opacity: 0.55;\n }\n &:hover {\n svg {\n opacity: 1;\n }\n }\n transition: all 0.3s ease-in;\n"])));
17843
- var ButtonsSpacer = styled.div(_templateObject4$6 || (_templateObject4$6 = _taggedTemplateLiteral(["\n border: 1px solid #373749;\n width: calc(100% - 20px);\n"])));
17842
+ var ButtonRow = styledComponents.styled(Link)(_templateObject3$6 || (_templateObject3$6 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n padding: 11px;\n width: 100%;\n height: 100%;\n overflow: visible;\n z-index: 99999;\n svg {\n opacity: 0.55;\n }\n &:hover {\n svg {\n opacity: 1;\n }\n }\n transition: all 0.3s ease-in;\n"])));
17843
+ var ButtonsSpacer = styledComponents.styled.div(_templateObject4$6 || (_templateObject4$6 = _taggedTemplateLiteral(["\n border: 1px solid #373749;\n width: calc(100% - 20px);\n"])));
17844
17844
  var CryptoButton = function CryptoButton(_ref6) {
17845
17845
  var _ref6$extended = _ref6.extended,
17846
17846
  extended = _ref6$extended === void 0 ? false : _ref6$extended,
@@ -17926,7 +17926,7 @@ var CryptoButton = function CryptoButton(_ref6) {
17926
17926
  };
17927
17927
 
17928
17928
  var _templateObject$9, _templateObject2$6;
17929
- var StyledUserButton = styled.div(_templateObject$9 || (_templateObject$9 = _taggedTemplateLiteral(["\n display: flex;\n justify-content: center;\n align-items: center;\n cursor: pointer;\n width: 40px;\n height: 40px;\n border-radius: 10px;\n background: #2b2b38;\n svg {\n fill: ", ";\n path {\n fill: ", ";\n }\n }\n ", " {\n width: 32px;\n height: 32px;\n border-radius: 8px;\n }\n"])), function (_ref) {
17929
+ var StyledUserButton = styledComponents.styled.div(_templateObject$9 || (_templateObject$9 = _taggedTemplateLiteral(["\n display: flex;\n justify-content: center;\n align-items: center;\n cursor: pointer;\n width: 40px;\n height: 40px;\n border-radius: 10px;\n background: #2b2b38;\n svg {\n fill: ", ";\n path {\n fill: ", ";\n }\n }\n ", " {\n width: 32px;\n height: 32px;\n border-radius: 8px;\n }\n"])), function (_ref) {
17930
17930
  var theme = _ref.theme;
17931
17931
  return theme.colors.primary;
17932
17932
  }, function (_ref2) {
@@ -17936,7 +17936,7 @@ var StyledUserButton = styled.div(_templateObject$9 || (_templateObject$9 = _tag
17936
17936
  var theme = _ref3.theme;
17937
17937
  return theme.mediaQueries.mobile;
17938
17938
  });
17939
- var StyledUserIcon = styled(Icon$1c)(_templateObject2$6 || (_templateObject2$6 = _taggedTemplateLiteral(["\n ", " {\n height: 18px;\n }\n"])), function (_ref4) {
17939
+ var StyledUserIcon = styledComponents.styled(Icon$1c)(_templateObject2$6 || (_templateObject2$6 = _taggedTemplateLiteral(["\n ", " {\n height: 18px;\n }\n"])), function (_ref4) {
17940
17940
  var theme = _ref4.theme;
17941
17941
  return theme.mediaQueries.mobile;
17942
17942
  });
@@ -17956,13 +17956,13 @@ var UserButton = function UserButton(_ref5) {
17956
17956
  };
17957
17957
 
17958
17958
  var _templateObject$8, _templateObject2$5, _templateObject3$5, _templateObject4$5, _templateObject5$4, _templateObject6$3;
17959
- var Wrapper = styled.div(_templateObject$8 || (_templateObject$8 = _taggedTemplateLiteral(["\n position: relative;\n width: 100%;\n height: 100%;\n overscroll-behavior-y: contain;\n scroll-snap-type: y proximity;\n"])));
17960
- var StyledNav = styled.nav(_templateObject2$5 || (_templateObject2$5 = _taggedTemplateLiteral(["\n align-items: flex-start;\n position: fixed;\n left: 0;\n transition: top 0.2s;\n display: flex;\n justify-content: space-between;\n padding: 30px 15px;\n background-color: transparent;\n z-index: 20;\n transform: translate3d(0, 0, 0);\n ", " {\n position: absolute;\n left: -12px;\n } ;\n"])), function (_ref) {
17959
+ var Wrapper = styledComponents.styled.div(_templateObject$8 || (_templateObject$8 = _taggedTemplateLiteral(["\n position: relative;\n width: 100%;\n height: 100%;\n overscroll-behavior-y: contain;\n scroll-snap-type: y proximity;\n"])));
17960
+ var StyledNav = styledComponents.styled.nav(_templateObject2$5 || (_templateObject2$5 = _taggedTemplateLiteral(["\n align-items: flex-start;\n position: fixed;\n left: 0;\n transition: top 0.2s;\n display: flex;\n justify-content: space-between;\n padding: 30px 15px;\n background-color: transparent;\n z-index: 20;\n transform: translate3d(0, 0, 0);\n ", " {\n position: absolute;\n left: -12px;\n } ;\n"])), function (_ref) {
17961
17961
  var theme = _ref.theme;
17962
17962
  return theme.mediaQueries.mobile;
17963
17963
  });
17964
- var BodyWrapper = styled.div(_templateObject3$5 || (_templateObject3$5 = _taggedTemplateLiteral(["\n position: relative;\n display: flex;\n min-height: 100vh;\n"])));
17965
- var Inner = styled.div(_templateObject4$5 || (_templateObject4$5 = _taggedTemplateLiteral(["\n flex-grow: 1;\n margin-top: 25px;\n transition: margin-top 0.2s;\n transform: translate3d(0, 0, 0);\n margin-left: ", "px;\n max-width: calc(100% - ", "px);\n ", " {\n max-width: 100%;\n margin-left: 0px;\n }\n"])), SIDEBAR_WIDTH_REDUCED, SIDEBAR_WIDTH_REDUCED, function (_ref2) {
17964
+ var BodyWrapper = styledComponents.styled.div(_templateObject3$5 || (_templateObject3$5 = _taggedTemplateLiteral(["\n position: relative;\n display: flex;\n min-height: 100vh;\n"])));
17965
+ var Inner = styledComponents.styled.div(_templateObject4$5 || (_templateObject4$5 = _taggedTemplateLiteral(["\n flex-grow: 1;\n margin-top: 25px;\n transition: margin-top 0.2s;\n transform: translate3d(0, 0, 0);\n margin-left: ", "px;\n max-width: calc(100% - ", "px);\n ", " {\n max-width: 100%;\n margin-left: 0px;\n }\n"])), SIDEBAR_WIDTH_REDUCED, SIDEBAR_WIDTH_REDUCED, function (_ref2) {
17966
17966
  var theme = _ref2.theme;
17967
17967
  return theme.mediaQueries.mobile;
17968
17968
  });
@@ -17974,7 +17974,7 @@ var Inner = styled.div(_templateObject4$5 || (_templateObject4$5 = _taggedTempla
17974
17974
  // opacity: 0;
17975
17975
  // }
17976
17976
  // `;
17977
- var ButtonsRow$1 = styled.div(_templateObject5$4 || (_templateObject5$4 = _taggedTemplateLiteral(["\n display: flex;\n justify-content: flex-end;\n aling-items: center;\n flex-direction: row;\n background: transparent;\n ", " {\n z-index: 99999;\n position: ", ";\n top: 30px;\n right: 25px;\n padding-bottom: 30px;\n ", "\n }\n"])), function (_ref3) {
17977
+ var ButtonsRow$1 = styledComponents.styled.div(_templateObject5$4 || (_templateObject5$4 = _taggedTemplateLiteral(["\n display: flex;\n justify-content: flex-end;\n aling-items: center;\n flex-direction: row;\n background: transparent;\n ", " {\n z-index: 99999;\n position: ", ";\n top: 30px;\n right: 25px;\n padding-bottom: 30px;\n ", "\n }\n"])), function (_ref3) {
17978
17978
  var theme = _ref3.theme;
17979
17979
  return theme.mediaQueries.mobile;
17980
17980
  }, function (_ref4) {
@@ -17984,7 +17984,7 @@ var ButtonsRow$1 = styled.div(_templateObject5$4 || (_templateObject5$4 = _tagge
17984
17984
  var isPushed = _ref5.isPushed;
17985
17985
  return !isPushed && "\n margin-right: 12px;\n margin-top: 5px;\n ";
17986
17986
  });
17987
- var MenuContent = styled.div(_templateObject6$3 || (_templateObject6$3 = _taggedTemplateLiteral(["\n display: flex;\n gap: 20px;\n flex-direction: row-reverse;\n transition: all 0.2s;\n width: 100%;\n\n ", " {\n margin-right: 50px;\n }\n\n @media (max-width: 900px) {\n flex-direction: column;\n gap: 7px;\n align-items: flex-end;\n }\n"])), function (_ref6) {
17987
+ var MenuContent = styledComponents.styled.div(_templateObject6$3 || (_templateObject6$3 = _taggedTemplateLiteral(["\n display: flex;\n gap: 20px;\n flex-direction: row-reverse;\n transition: all 0.2s;\n width: 100%;\n\n ", " {\n margin-right: 50px;\n }\n\n @media (max-width: 900px) {\n flex-direction: column;\n gap: 7px;\n align-items: flex-end;\n }\n"])), function (_ref6) {
17988
17988
  var theme = _ref6.theme;
17989
17989
  return theme.mediaQueries.mobile;
17990
17990
  });
@@ -18215,7 +18215,7 @@ var types = {
18215
18215
  var _excluded = ["toast", "onRemove", "style", "ttl"];
18216
18216
  var _templateObject$7;
18217
18217
  var alertTypeMap = _defineProperty(_defineProperty(_defineProperty(_defineProperty({}, types.INFO, variants$3.INFO), types.SUCCESS, variants$3.SUCCESS), types.DANGER, variants$3.DANGER), types.WARNING, variants$3.WARNING);
18218
- var StyledToast = styled.div(_templateObject$7 || (_templateObject$7 = _taggedTemplateLiteral(["\n right: 30px; // 14px+\n position: fixed;\n max-width: calc(100% - 32px);\n transition: all 250ms ease-in;\n width: 100%;\n\n ", " {\n max-width: 400px;\n }\n"])), function (_ref) {
18218
+ var StyledToast = styledComponents.styled.div(_templateObject$7 || (_templateObject$7 = _taggedTemplateLiteral(["\n right: 30px; // 14px+\n position: fixed;\n max-width: calc(100% - 32px);\n transition: all 250ms ease-in;\n width: 100%;\n\n ", " {\n max-width: 400px;\n }\n"])), function (_ref) {
18219
18219
  var theme = _ref.theme;
18220
18220
  return theme.mediaQueries.sm;
18221
18221
  });
@@ -18292,7 +18292,7 @@ var Toast = function Toast(_ref2) {
18292
18292
  var _templateObject$6;
18293
18293
  var ZINDEX = 1000;
18294
18294
  var TOP_POSITION = 94; // Initial position from the top, 14px+
18295
- var StyledToastContainer = styled.div(_templateObject$6 || (_templateObject$6 = _taggedTemplateLiteral(["\n .enter,\n .appear {\n opacity: 0.01;\n }\n\n .enter.enter-active,\n .appear.appear-active {\n opacity: 1;\n transition: opacity 250ms ease-in;\n }\n\n .exit {\n opacity: 1;\n }\n\n .exit.exit-active {\n opacity: 0.01;\n transition: opacity 250ms ease-out;\n }\n"])));
18295
+ var StyledToastContainer = styledComponents.styled.div(_templateObject$6 || (_templateObject$6 = _taggedTemplateLiteral(["\n .enter,\n .appear {\n opacity: 0.01;\n }\n\n .enter.enter-active,\n .appear.appear-active {\n opacity: 1;\n transition: opacity 250ms ease-in;\n }\n\n .exit {\n opacity: 1;\n }\n\n .exit.exit-active {\n opacity: 0.01;\n transition: opacity 250ms ease-out;\n }\n"])));
18296
18296
  var ToastContainer = function ToastContainer(_ref) {
18297
18297
  var toasts = _ref.toasts,
18298
18298
  onRemove = _ref.onRemove,
@@ -18320,11 +18320,11 @@ var ToastContainer = function ToastContainer(_ref) {
18320
18320
  };
18321
18321
 
18322
18322
  var _templateObject$5, _templateObject2$4, _templateObject3$4, _templateObject4$4, _templateObject5$3;
18323
- var VerificationModalContent = styled.div(_templateObject$5 || (_templateObject$5 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: center;\n height: 100%;\n margin-top: -30px;\n"])));
18324
- var DescriptionSection = styled.div(_templateObject2$4 || (_templateObject2$4 = _taggedTemplateLiteral(["\n width: 305px;\n text-align: center;\n margin-top: 32px;\n margin-bottom: 32px;\n"])));
18325
- var ModalText$1 = styled(Text)(_templateObject3$4 || (_templateObject3$4 = _taggedTemplateLiteral(["\n line-height: 170%;\n"])));
18326
- var ButtonsRow = styled.div(_templateObject4$4 || (_templateObject4$4 = _taggedTemplateLiteral(["\n display: flex;\n justify-content: space-around;\n align-items: center;\n width: 100%;\n"])));
18327
- var ModalButton$1 = styled(Button$1)(_templateObject5$3 || (_templateObject5$3 = _taggedTemplateLiteral(["\n width: 120px;\n padding: 0 8px;\n"])));
18323
+ var VerificationModalContent = styledComponents.styled.div(_templateObject$5 || (_templateObject$5 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: center;\n height: 100%;\n margin-top: -30px;\n"])));
18324
+ var DescriptionSection = styledComponents.styled.div(_templateObject2$4 || (_templateObject2$4 = _taggedTemplateLiteral(["\n width: 305px;\n text-align: center;\n margin-top: 32px;\n margin-bottom: 32px;\n"])));
18325
+ var ModalText$1 = styledComponents.styled(Text)(_templateObject3$4 || (_templateObject3$4 = _taggedTemplateLiteral(["\n line-height: 170%;\n"])));
18326
+ var ButtonsRow = styledComponents.styled.div(_templateObject4$4 || (_templateObject4$4 = _taggedTemplateLiteral(["\n display: flex;\n justify-content: space-around;\n align-items: center;\n width: 100%;\n"])));
18327
+ var ModalButton$1 = styledComponents.styled(Button$1)(_templateObject5$3 || (_templateObject5$3 = _taggedTemplateLiteral(["\n width: 120px;\n padding: 0 8px;\n"])));
18328
18328
  var VerificationModal = function VerificationModal(props) {
18329
18329
  var onVerify = props.onVerify,
18330
18330
  modalDescription = props.modalDescription,
@@ -18395,15 +18395,15 @@ var useVerificationModal = function useVerificationModal(_ref) {
18395
18395
  };
18396
18396
 
18397
18397
  var _templateObject$4, _templateObject2$3, _templateObject3$3, _templateObject4$3, _templateObject5$2, _templateObject6$2;
18398
- var IdoExtensionsModalContent = styled.div(_templateObject$4 || (_templateObject$4 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: center;\n height: 100%;\n margin-top: -30px;\n"])));
18399
- var ModalText = styled(Text)(_templateObject2$3 || (_templateObject2$3 = _taggedTemplateLiteral(["\n line-height: 170%;\n width: ", ";\n ", " {\n width: 90%;\n }\n"])), function (_ref) {
18398
+ var IdoExtensionsModalContent = styledComponents.styled.div(_templateObject$4 || (_templateObject$4 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: center;\n height: 100%;\n margin-top: -30px;\n"])));
18399
+ var ModalText = styledComponents.styled(Text)(_templateObject2$3 || (_templateObject2$3 = _taggedTemplateLiteral(["\n line-height: 170%;\n width: ", ";\n ", " {\n width: 90%;\n }\n"])), function (_ref) {
18400
18400
  var textWidth = _ref.textWidth;
18401
18401
  return textWidth ? "".concat(textWidth, "px") : "100%";
18402
18402
  }, function (_ref2) {
18403
18403
  var theme = _ref2.theme;
18404
18404
  return theme.mediaQueries.tablet;
18405
18405
  });
18406
- var InputWrapper = styled.div(_templateObject3$3 || (_templateObject3$3 = _taggedTemplateLiteral(["\n position: relative;\n width: 100%;\n margin-top: ", "px;\n min-width: 420px;\n ", " {\n min-width: 100%;\n }\n ", " {\n margin-top: 10px;\n }\n"])), function (_ref3) {
18406
+ var InputWrapper = styledComponents.styled.div(_templateObject3$3 || (_templateObject3$3 = _taggedTemplateLiteral(["\n position: relative;\n width: 100%;\n margin-top: ", "px;\n min-width: 420px;\n ", " {\n min-width: 100%;\n }\n ", " {\n margin-top: 10px;\n }\n"])), function (_ref3) {
18407
18407
  var marginTop = _ref3.marginTop;
18408
18408
  return marginTop || 0;
18409
18409
  }, function (_ref4) {
@@ -18413,12 +18413,12 @@ var InputWrapper = styled.div(_templateObject3$3 || (_templateObject3$3 = _tagge
18413
18413
  var theme = _ref5.theme;
18414
18414
  return theme.mediaQueries.mobile;
18415
18415
  });
18416
- var InfoText = styled(Text)(_templateObject4$3 || (_templateObject4$3 = _taggedTemplateLiteral(["\n text-align: center;\n font-weight: 400;\n font-size: 14px;\n line-height: 160%;\n color: #535459;\n margin-top: 24px;\n b {\n color: ", ";\n cursor: pointer;\n }\n"])), function (_ref6) {
18416
+ var InfoText = styledComponents.styled(Text)(_templateObject4$3 || (_templateObject4$3 = _taggedTemplateLiteral(["\n text-align: center;\n font-weight: 400;\n font-size: 14px;\n line-height: 160%;\n color: #535459;\n margin-top: 24px;\n b {\n color: ", ";\n cursor: pointer;\n }\n"])), function (_ref6) {
18417
18417
  var theme = _ref6.theme;
18418
18418
  return theme.colors.primary;
18419
18419
  });
18420
- var IdoExtensionsForm = styled.form(_templateObject5$2 || (_templateObject5$2 = _taggedTemplateLiteral(["\n width: 100%;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n"])));
18421
- var ModalButton = styled(Button$1)(_templateObject6$2 || (_templateObject6$2 = _taggedTemplateLiteral(["\n width: 144px;\n margin-top: 24px;\n font-size: 14px;\n"])));
18420
+ var IdoExtensionsForm = styledComponents.styled.form(_templateObject5$2 || (_templateObject5$2 = _taggedTemplateLiteral(["\n width: 100%;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n"])));
18421
+ var ModalButton = styledComponents.styled(Button$1)(_templateObject6$2 || (_templateObject6$2 = _taggedTemplateLiteral(["\n width: 144px;\n margin-top: 24px;\n font-size: 14px;\n"])));
18422
18422
  var IdoExtensionsModal = function IdoExtensionsModal(_ref7) {
18423
18423
  var onExtensionsAdd = _ref7.onExtensionsAdd,
18424
18424
  onDismiss = _ref7.onDismiss,
@@ -18656,13 +18656,13 @@ var useIdoExtensionsModal = function useIdoExtensionsModal(_ref) {
18656
18656
  };
18657
18657
 
18658
18658
  var _templateObject$3, _templateObject2$2, _templateObject3$2, _templateObject4$2;
18659
- var PriceContainerWrapper$1 = styled.div(_templateObject$3 || (_templateObject$3 = _taggedTemplateLiteral(["\n display: flex;\n justify-content: space-between;\n align-items: space-around;\n flex-direction: column;\n padding: 20px;\n background: ", ";\n @-moz-document url-prefix() {\n background: rgba(36, 36, 36, 0.95) !important;\n }\n border: 1px solid rgba(255, 255, 255, 0.03);\n box-sizing: border-box;\n border-radius: 10px;\n max-height: 170px;\n width: 100%;\n height: 100%;\n"])), function (_ref) {
18659
+ var PriceContainerWrapper$1 = styledComponents.styled.div(_templateObject$3 || (_templateObject$3 = _taggedTemplateLiteral(["\n display: flex;\n justify-content: space-between;\n align-items: space-around;\n flex-direction: column;\n padding: 20px;\n background: ", ";\n @-moz-document url-prefix() {\n background: rgba(36, 36, 36, 0.95) !important;\n }\n border: 1px solid rgba(255, 255, 255, 0.03);\n box-sizing: border-box;\n border-radius: 10px;\n max-height: 170px;\n width: 100%;\n height: 100%;\n"])), function (_ref) {
18660
18660
  var theme = _ref.theme;
18661
18661
  return theme.backgrounds.secondary;
18662
18662
  });
18663
- var HeaderWrapper$1 = styled.div(_templateObject2$2 || (_templateObject2$2 = _taggedTemplateLiteral(["\n display: flex;\n justify-content: space-between;\n align-items: center;\n margin-bottom: 26px;\n"])));
18664
- var OriginsWrapper = styled.div(_templateObject3$2 || (_templateObject3$2 = _taggedTemplateLiteral(["\n display: flex;\n justify-content: space-between;\n"])));
18665
- var OriginTitle = styled(Text)(_templateObject4$2 || (_templateObject4$2 = _taggedTemplateLiteral(["\n color: ", ";\n cursor: pointer;\n padding: 0px 12px;\n transition: all 0.5s;\n"])), function (_ref2) {
18663
+ var HeaderWrapper$1 = styledComponents.styled.div(_templateObject2$2 || (_templateObject2$2 = _taggedTemplateLiteral(["\n display: flex;\n justify-content: space-between;\n align-items: center;\n margin-bottom: 26px;\n"])));
18664
+ var OriginsWrapper = styledComponents.styled.div(_templateObject3$2 || (_templateObject3$2 = _taggedTemplateLiteral(["\n display: flex;\n justify-content: space-between;\n"])));
18665
+ var OriginTitle = styledComponents.styled(Text)(_templateObject4$2 || (_templateObject4$2 = _taggedTemplateLiteral(["\n color: ", ";\n cursor: pointer;\n padding: 0px 12px;\n transition: all 0.5s;\n"])), function (_ref2) {
18666
18666
  var currentIndex = _ref2.currentIndex,
18667
18667
  index = _ref2.index,
18668
18668
  theme = _ref2.theme;
@@ -18713,16 +18713,16 @@ var PriceContainer = function PriceContainer(_ref3) {
18713
18713
  };
18714
18714
 
18715
18715
  var _templateObject$2, _templateObject2$1, _templateObject3$1, _templateObject4$1, _templateObject5$1, _templateObject6$1, _templateObject7$1;
18716
- var PriceContainerWrapper = styled.div(_templateObject$2 || (_templateObject$2 = _taggedTemplateLiteral(["\n display: flex;\n justify-content: flex-start;\n align-items: space-around;\n flex-direction: column;\n padding: 20px;\n @-moz-document url-prefix() {\n background: ", "; !important;\n }\n\n background: ", ";\n border: 1px solid rgba(255, 255, 255, 0.03);\n box-sizing: border-box;\n border-radius: 10px;\n box-shadow: none;\n\n position: relative;\n overflow: hidden;\n"])), function (_ref) {
18716
+ var PriceContainerWrapper = styledComponents.styled.div(_templateObject$2 || (_templateObject$2 = _taggedTemplateLiteral(["\n display: flex;\n justify-content: flex-start;\n align-items: space-around;\n flex-direction: column;\n padding: 20px;\n @-moz-document url-prefix() {\n background: ", "; !important;\n }\n\n background: ", ";\n border: 1px solid rgba(255, 255, 255, 0.03);\n box-sizing: border-box;\n border-radius: 10px;\n box-shadow: none;\n\n position: relative;\n overflow: hidden;\n"])), function (_ref) {
18717
18717
  var theme = _ref.theme;
18718
18718
  return theme.backgrounds.secondary;
18719
18719
  }, function (_ref2) {
18720
18720
  var theme = _ref2.theme;
18721
18721
  return theme.backgrounds.secondary;
18722
18722
  });
18723
- var HeaderWrapper = styled.div(_templateObject2$1 || (_templateObject2$1 = _taggedTemplateLiteral(["\n display: flex;\n justify-content: space-between;\n align-items: center;\n margin-bottom: 26px;\n"])));
18724
- var TokensContainer = styled(GridLayout$1)(_templateObject3$1 || (_templateObject3$1 = _taggedTemplateLiteral(["\n color: white;\n"])));
18725
- var MainCoinWrapper = styled.div(_templateObject4$1 || (_templateObject4$1 = _taggedTemplateLiteral(["\n grid-column: span 8;\n border-bottom: 1px solid ", ";\n padding-bottom: 10px;\n display: flex;\n justify-content: center;\n padding-right: 20px;\n ", " {\n grid-column: span 3;\n border-right: 1px solid ", ";\n border-bottom: none;\n justify-content: flex-start;\n }\n"])), function (_ref3) {
18723
+ var HeaderWrapper = styledComponents.styled.div(_templateObject2$1 || (_templateObject2$1 = _taggedTemplateLiteral(["\n display: flex;\n justify-content: space-between;\n align-items: center;\n margin-bottom: 26px;\n"])));
18724
+ var TokensContainer = styledComponents.styled(GridLayout$1)(_templateObject3$1 || (_templateObject3$1 = _taggedTemplateLiteral(["\n color: white;\n"])));
18725
+ var MainCoinWrapper = styledComponents.styled.div(_templateObject4$1 || (_templateObject4$1 = _taggedTemplateLiteral(["\n grid-column: span 8;\n border-bottom: 1px solid ", ";\n padding-bottom: 10px;\n display: flex;\n justify-content: center;\n padding-right: 20px;\n ", " {\n grid-column: span 3;\n border-right: 1px solid ", ";\n border-bottom: none;\n justify-content: flex-start;\n }\n"])), function (_ref3) {
18726
18726
  var theme = _ref3.theme;
18727
18727
  return theme.colors.grey;
18728
18728
  }, function (_ref4) {
@@ -18732,7 +18732,7 @@ var MainCoinWrapper = styled.div(_templateObject4$1 || (_templateObject4$1 = _ta
18732
18732
  var theme = _ref5.theme;
18733
18733
  return theme.colors.grey;
18734
18734
  });
18735
- var TokensWrapper = styled.div(_templateObject5$1 || (_templateObject5$1 = _taggedTemplateLiteral(["\n height: 100%;\n display: flex;\n justify-content: ", ";\n grid-column: span 8;\n padding-bottom: 20px;\n ", "\n ", " {\n padding-bottom: 0px;\n }\n"])), function (_ref6) {
18735
+ var TokensWrapper = styledComponents.styled.div(_templateObject5$1 || (_templateObject5$1 = _taggedTemplateLiteral(["\n height: 100%;\n display: flex;\n justify-content: ", ";\n grid-column: span 8;\n padding-bottom: 20px;\n ", "\n ", " {\n padding-bottom: 0px;\n }\n"])), function (_ref6) {
18736
18736
  var noData = _ref6.noData;
18737
18737
  return noData ? "center" : "space-between";
18738
18738
  }, function (_ref7) {
@@ -18742,8 +18742,8 @@ var TokensWrapper = styled.div(_templateObject5$1 || (_templateObject5$1 = _tagg
18742
18742
  var theme = _ref8.theme;
18743
18743
  return theme.mediaQueries.sm;
18744
18744
  });
18745
- var DotsContainer = styled.div(_templateObject6$1 || (_templateObject6$1 = _taggedTemplateLiteral(["\n position: absolute;\n display: flex;\n align-items: center;\n @media (min-width: 576px) {\n right: 20px;\n top: 29px;\n }\n @media (max-width: 576px) {\n left: 50%;\n transform: translate(-50%);\n bottom: 17px !important;\n }\n"])));
18746
- var Dot = styled.div(_templateObject7$1 || (_templateObject7$1 = _taggedTemplateLiteral(["\n width: 8px;\n height: 8px;\n display: inline - block;\n margin: 0 8px;\n border-radius: 99px;\n background: ", ";\n border: ", ";\n cursor: pointer;\n padding: 3px;\n"])), function (_ref9) {
18745
+ var DotsContainer = styledComponents.styled.div(_templateObject6$1 || (_templateObject6$1 = _taggedTemplateLiteral(["\n position: absolute;\n display: flex;\n align-items: center;\n @media (min-width: 576px) {\n right: 20px;\n top: 29px;\n }\n @media (max-width: 576px) {\n left: 50%;\n transform: translate(-50%);\n bottom: 17px !important;\n }\n"])));
18746
+ var Dot = styledComponents.styled.div(_templateObject7$1 || (_templateObject7$1 = _taggedTemplateLiteral(["\n width: 8px;\n height: 8px;\n display: inline - block;\n margin: 0 8px;\n border-radius: 99px;\n background: ", ";\n border: ", ";\n cursor: pointer;\n padding: 3px;\n"])), function (_ref9) {
18747
18747
  var active = _ref9.active,
18748
18748
  theme = _ref9.theme;
18749
18749
  return active ? theme.colors.blue : "transparent";
@@ -18838,23 +18838,23 @@ var TopTokensContainer = function TopTokensContainer(_ref1) {
18838
18838
  };
18839
18839
 
18840
18840
  var _templateObject$1, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8;
18841
- var ForParticipants = styled(Text)(_templateObject$1 || (_templateObject$1 = _taggedTemplateLiteral(["\n margin: 0 auto;\n width: 155px;\n text-align: center;\n border: 1px solid #12ffb8;\n line-height: 28px;\n border-radius: 10px;\n margin: 106px auto 26px;\n"])));
18842
- var HowToParticipate = styled(Text)(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n text-align: center;\n width: 100%;\n ", " {\n font-size: 26px;\n width: 200px;\n margin: 0 auto;\n }\n"])), function (_ref) {
18841
+ var ForParticipants = styledComponents.styled(Text)(_templateObject$1 || (_templateObject$1 = _taggedTemplateLiteral(["\n margin: 0 auto;\n width: 155px;\n text-align: center;\n border: 1px solid #12ffb8;\n line-height: 28px;\n border-radius: 10px;\n margin: 106px auto 26px;\n"])));
18842
+ var HowToParticipate = styledComponents.styled(Text)(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n text-align: center;\n width: 100%;\n ", " {\n font-size: 26px;\n width: 200px;\n margin: 0 auto;\n }\n"])), function (_ref) {
18843
18843
  var theme = _ref.theme;
18844
18844
  return theme.mediaQueries.mobile;
18845
18845
  });
18846
- var StepsWrapper = styled.div(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n display: flex;\n justify-content: space-between;\n align-items: flex-start;\n margin-top: 40px;\n margin-bottom: 60px;\n ", " {\n flex-wrap: wrap;\n justify-content: center;\n row-gap: 45px;\n }\n"])), function (_ref2) {
18846
+ var StepsWrapper = styledComponents.styled.div(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n display: flex;\n justify-content: space-between;\n align-items: flex-start;\n margin-top: 40px;\n margin-bottom: 60px;\n ", " {\n flex-wrap: wrap;\n justify-content: center;\n row-gap: 45px;\n }\n"])), function (_ref2) {
18847
18847
  var theme = _ref2.theme;
18848
18848
  return theme.mediaQueries.desktop;
18849
18849
  });
18850
- var SpacePadTierSystem = styled(Text)(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral(["\n text-align: center;\n width: 100%;\n margin-top: 170px;\n ", " {\n font-size: 26px;\n width: 181px;\n margin: 0 auto;\n margin-top: 170px;\n }\n"])), function (_ref3) {
18850
+ var SpacePadTierSystem = styledComponents.styled(Text)(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral(["\n text-align: center;\n width: 100%;\n margin-top: 170px;\n ", " {\n font-size: 26px;\n width: 181px;\n margin: 0 auto;\n margin-top: 170px;\n }\n"])), function (_ref3) {
18851
18851
  var theme = _ref3.theme;
18852
18852
  return theme.mediaQueries.mobile;
18853
18853
  });
18854
- var SpacePadTierSystemDescription = styled(Text)(_templateObject5 || (_templateObject5 = _taggedTemplateLiteral(["\n width: 630px;\n margin: 0 auto;\n color: rgba(255, 255, 255, 0.55);\n text-align: center;\n margin-bottom: 30px;\n @media screen and (max-width: 760px) {\n width: 320px;\n }\n"])));
18855
- var TiersWrapper = styled.div(_templateObject6 || (_templateObject6 = _taggedTemplateLiteral(["\n display: flex;\n justify-content: center;\n gap: 30px;\n @media screen and (max-width: 1180px) {\n flex-direction: column;\n align-items: center;\n }\n"])));
18856
- var RightTiersColumn = styled.div(_templateObject7 || (_templateObject7 = _taggedTemplateLiteral(["\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-end;\n max-width: 730px;\n gap: 30px;\n @media screen and (max-width: 1180px) {\n flex-direction: column;\n justify-content: center;\n }\n"])));
18857
- var VerticalSeparator = styled.div(_templateObject8 || (_templateObject8 = _taggedTemplateLiteral(["\n border-left: 1px solid #12ffb8;\n height: 60px;\n position: absolute;\n left: 50%;\n"])));
18854
+ var SpacePadTierSystemDescription = styledComponents.styled(Text)(_templateObject5 || (_templateObject5 = _taggedTemplateLiteral(["\n width: 630px;\n margin: 0 auto;\n color: rgba(255, 255, 255, 0.55);\n text-align: center;\n margin-bottom: 30px;\n @media screen and (max-width: 760px) {\n width: 320px;\n }\n"])));
18855
+ var TiersWrapper = styledComponents.styled.div(_templateObject6 || (_templateObject6 = _taggedTemplateLiteral(["\n display: flex;\n justify-content: center;\n gap: 30px;\n @media screen and (max-width: 1180px) {\n flex-direction: column;\n align-items: center;\n }\n"])));
18856
+ var RightTiersColumn = styledComponents.styled.div(_templateObject7 || (_templateObject7 = _taggedTemplateLiteral(["\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-end;\n max-width: 730px;\n gap: 30px;\n @media screen and (max-width: 1180px) {\n flex-direction: column;\n justify-content: center;\n }\n"])));
18857
+ var VerticalSeparator = styledComponents.styled.div(_templateObject8 || (_templateObject8 = _taggedTemplateLiteral(["\n border-left: 1px solid #12ffb8;\n height: 60px;\n position: absolute;\n left: 50%;\n"])));
18858
18858
  var IdoInfoDescription = function IdoInfoDescription(_ref4) {
18859
18859
  var idoSteps = _ref4.idoSteps,
18860
18860
  tiers = _ref4.tiers;
@@ -18898,7 +18898,7 @@ var IdoInfoDescription = function IdoInfoDescription(_ref4) {
18898
18898
  };
18899
18899
 
18900
18900
  var _templateObject;
18901
- var ResetCSS = styled.createGlobalStyle(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n /* prettier-ignore */\n html, body, div, span, applet, object, iframe,\n h1, h2, h3, h4, h5, h6, p, blockquote, pre,\n a, abbr, acronym, address, big, cite, code,\n del, dfn, em, img, ins, kbd, q, s, samp,\n small, strike, strong, sub, sup, tt, var,\n b, u, i, center,\n dl, dt, dd, ol, ul, li,\n fieldset, form, label, legend,\n table, caption, tbody, tfoot, thead, tr, th, td,\n article, aside, canvas, details, embed, \n figure, figcaption, footer, header, hgroup, \n menu, nav, output, ruby, section, summary,\n time, mark, audio, video {\n margin: 0;\n padding: 0;\n border: 0;\n font-size: 100%;\n vertical-align: baseline;\n }\n /* HTML5 display-role reset for older browsers */\n /* prettier-ignore */\n article, aside, details, figcaption, figure, \n footer, header, hgroup, menu, nav, section {\n display: block;\n }\n body {\n line-height: 1;\n font-size: 16px;\n }\n ol,\n ul {\n list-style: disc;\n list-style-position: inside;\n }\n blockquote,\n q {\n quotes: none;\n }\n blockquote:before,\n blockquote:after,\n q:before,\n q:after {\n content: \"\";\n content: none;\n }\n table {\n border-collapse: collapse;\n border-spacing: 0;\n }\n a {\n color: inherit;\n text-decoration: none;\n }\n [role=\"button\"] {\n cursor: pointer;\n }\n *,\n *::before,\n *::after {\n box-sizing: border-box;\n }\n * {\n font-family: 'Manrope', sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n }\n /* Scrollbar */\n ::-webkit-scrollbar {\n width: 7px;\n }\n ::-webkit-scrollbar-thumb {\n background: ", "; \n border-radius: 8px;\n }\n ::-webkit-scrollbar-track {\n box-shadow: inset 0 0 5px ", "; \n border-radius: 10px;\n }\n"])), function (_ref) {
18901
+ var ResetCSS = styledComponents.createGlobalStyle(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n /* prettier-ignore */\n html, body, div, span, applet, object, iframe,\n h1, h2, h3, h4, h5, h6, p, blockquote, pre,\n a, abbr, acronym, address, big, cite, code,\n del, dfn, em, img, ins, kbd, q, s, samp,\n small, strike, strong, sub, sup, tt, var,\n b, u, i, center,\n dl, dt, dd, ol, ul, li,\n fieldset, form, label, legend,\n table, caption, tbody, tfoot, thead, tr, th, td,\n article, aside, canvas, details, embed, \n figure, figcaption, footer, header, hgroup, \n menu, nav, output, ruby, section, summary,\n time, mark, audio, video {\n margin: 0;\n padding: 0;\n border: 0;\n font-size: 100%;\n vertical-align: baseline;\n }\n /* HTML5 display-role reset for older browsers */\n /* prettier-ignore */\n article, aside, details, figcaption, figure, \n footer, header, hgroup, menu, nav, section {\n display: block;\n }\n body {\n line-height: 1;\n font-size: 16px;\n }\n ol,\n ul {\n list-style: disc;\n list-style-position: inside;\n }\n blockquote,\n q {\n quotes: none;\n }\n blockquote:before,\n blockquote:after,\n q:before,\n q:after {\n content: \"\";\n content: none;\n }\n table {\n border-collapse: collapse;\n border-spacing: 0;\n }\n a {\n color: inherit;\n text-decoration: none;\n }\n [role=\"button\"] {\n cursor: pointer;\n }\n *,\n *::before,\n *::after {\n box-sizing: border-box;\n }\n * {\n font-family: 'Manrope', sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n }\n /* Scrollbar */\n ::-webkit-scrollbar {\n width: 7px;\n }\n ::-webkit-scrollbar-thumb {\n background: ", "; \n border-radius: 8px;\n }\n ::-webkit-scrollbar-track {\n box-shadow: inset 0 0 5px ", "; \n border-radius: 10px;\n }\n"])), function (_ref) {
18902
18902
  var theme = _ref.theme;
18903
18903
  return theme.colors.primary;
18904
18904
  }, function (_ref2) {