@mycause/ui 0.0.0-c62b2881 → 0.0.0-c652b862

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.
Files changed (62) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist/components/choose-charity-card/choose-charity-card.d.ts +10 -0
  3. package/dist/components/choose-charity-card/choose-charity-card.stories.d.ts +14 -0
  4. package/dist/components/choose-charity-card/index.d.ts +1 -0
  5. package/dist/components/favorite-charity-item/favorite-charity-item.d.ts +15 -0
  6. package/dist/components/favorite-charity-item/favorite-charity-item.stories.d.ts +15 -0
  7. package/dist/components/favorite-charity-item/index.d.ts +1 -0
  8. package/dist/components/green-dashboard-sidebar/Icon.d.ts +11 -0
  9. package/dist/components/green-dashboard-sidebar/green-dashboard-sidebar.d.ts +15 -0
  10. package/dist/components/green-dashboard-sidebar/green-dashboard-sidebar.stories.d.ts +12 -0
  11. package/dist/components/green-dashboard-sidebar/index.d.ts +1 -0
  12. package/dist/components/index.d.ts +16 -1
  13. package/dist/components/input/InputDefault.d.ts +8 -0
  14. package/dist/components/input/index.d.ts +1 -0
  15. package/dist/components/input/input.stories.d.ts +12 -0
  16. package/dist/components/line-chart/partner-line-chart-block.d.ts +1 -3
  17. package/dist/components/modal/index.d.ts +1 -0
  18. package/dist/components/modal/modal-image.d.ts +8 -0
  19. package/dist/components/modal/modal.d.ts +3 -1
  20. package/dist/components/modal/modal.stories.d.ts +12 -0
  21. package/dist/components/modal/modalImage.d.ts +8 -0
  22. package/dist/components/my-account-choose-charity-card/index.d.ts +1 -0
  23. package/dist/components/my-account-choose-charity-card/my-account-choose-charity-card.d.ts +11 -0
  24. package/dist/components/my-account-choose-charity-card/my-account-choose-charity-card.stories.d.ts +14 -0
  25. package/dist/components/my-account-frp-preview/Icon.d.ts +5 -0
  26. package/dist/components/my-account-frp-preview/frp-information.d.ts +12 -0
  27. package/dist/components/my-account-frp-preview/frp-preview-img.d.ts +8 -0
  28. package/dist/components/my-account-frp-preview/index.d.ts +1 -0
  29. package/dist/components/my-account-frp-preview/my-account-frp-preview.d.ts +15 -0
  30. package/dist/components/my-account-frp-preview/my-account-frp-preview.stories.d.ts +18 -0
  31. package/dist/components/my-account-sidebar/Icon.d.ts +11 -0
  32. package/dist/components/my-account-sidebar/index.d.ts +1 -0
  33. package/dist/components/my-account-sidebar/my-account-sidebar.d.ts +15 -0
  34. package/dist/components/my-account-sidebar/my-account-sidebar.stories.d.ts +12 -0
  35. package/dist/components/my-account-start-fundraise-card/index.d.ts +1 -0
  36. package/dist/components/my-account-start-fundraise-card/my-account-start-fundraise-card.d.ts +11 -0
  37. package/dist/components/my-account-start-fundraise-card/my-account-start-fundraise-card.stories.d.ts +14 -0
  38. package/dist/components/my-account-stats-donated/index.d.ts +1 -0
  39. package/dist/components/my-account-stats-donated/my-account-stats-donated.d.ts +8 -0
  40. package/dist/components/my-account-stats-donated/my-account-stats-donated.stories.d.ts +12 -0
  41. package/dist/components/my-account-stats-raised/index.d.ts +1 -0
  42. package/dist/components/my-account-stats-raised/my-account-stats-raised.d.ts +8 -0
  43. package/dist/components/my-account-stats-raised/my-account-stats-raised.stories.d.ts +12 -0
  44. package/dist/components/partner-chart-stats/index.d.ts +1 -0
  45. package/dist/components/partner-chart-stats/partner-chart-stats.d.ts +11 -0
  46. package/dist/components/partner-chart-stats/partner-chart-stats.stories.d.ts +18 -0
  47. package/dist/components/partner-toggle-button/index.d.ts +2 -0
  48. package/dist/components/partner-toggle-button/partner-toggle-button-block.d.ts +11 -0
  49. package/dist/components/partner-toggle-button/partner-toggle-button-block.stories.d.ts +12 -0
  50. package/dist/components/partner-toggle-button/partner-toggle-button.d.ts +8 -0
  51. package/dist/components/progressbar/progress-bar-circle.d.ts +10 -0
  52. package/dist/components/progressbar/progressbar.stories.d.ts +6 -0
  53. package/dist/components/start-fundraise-card/index.d.ts +1 -0
  54. package/dist/components/start-fundraise-card/start-fundraise-card.d.ts +10 -0
  55. package/dist/components/start-fundraise-card/start-fundraise-card.stories.d.ts +14 -0
  56. package/dist/components/text-field/text-field-search.d.ts +1 -2
  57. package/dist/components/this-month-card/index.d.ts +1 -0
  58. package/dist/components/this-month-card/this-month-card.d.ts +15 -0
  59. package/dist/components/this-month-card/this-month-card.stories.d.ts +12 -0
  60. package/dist/index.esm.js +1073 -546
  61. package/dist/index.js +1084 -547
  62. package/package.json +1 -2
package/dist/index.esm.js CHANGED
@@ -28,7 +28,6 @@ import MDCRadio, { NativeRadioControl } from '@material/react-radio';
28
28
  import MDCSwitch from '@material/react-switch';
29
29
  import Dropzone from 'react-dropzone-uploader';
30
30
  import { getDroppedOrSelectedFiles as getDroppedOrSelectedFiles$1 } from 'html5-file-selector';
31
- import Chart from 'chart.js';
32
31
 
33
32
  function _typeof(obj) {
34
33
  if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {
@@ -2335,7 +2334,6 @@ function TextFieldSearch(_ref) {
2335
2334
  var value = _ref.value,
2336
2335
  _onChange = _ref.onChange,
2337
2336
  onSubmit = _ref.onSubmit,
2338
- onClose = _ref.onClose,
2339
2337
  placeholder = _ref.placeholder;
2340
2338
  // Focus the search bar when opened
2341
2339
  var input = useRef(null);
@@ -2366,7 +2364,9 @@ function TextFieldSearch(_ref) {
2366
2364
  className: "searchIcon"
2367
2365
  }),
2368
2366
  onTrailingIconSelect: onSubmit,
2369
- onLeadingIconSelect: onClose,
2367
+ onLeadingIconSelect: function onLeadingIconSelect() {
2368
+ return _onChange("");
2369
+ },
2370
2370
  onChange: function onChange(e) {
2371
2371
  return _onChange(e.currentTarget.value);
2372
2372
  },
@@ -2376,15 +2376,14 @@ function TextFieldSearch(_ref) {
2376
2376
  ref: input
2377
2377
  })), React.createElement(_JSXStyle, {
2378
2378
  id: "763494471"
2379
- }, ".navigation-search.jsx-763494471{height:100%;width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}.navigation-search.jsx-763494471 .mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon.closeIcon{left:auto;right:37px;cursor:pointer;}.navigation-search.jsx-763494471 .mdc-text-field--outlined.mdc-text-field--dense.mdc-text-field--with-leading-icon .mdc-text-field__input{padding-left:10px;}.navigation-search.jsx-763494471>*:first-child{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;}.navigation-search.jsx-763494471 .mdc-text-field .mdc-text-field__icon,.navigation-search.jsx-763494471 .mdc-text-field .mdc-text-field__input{color:\"#000\";}.navigation-search.jsx-763494471 .mdc-text-field .mdc-text-field__input::-webkit-input-placeholder{color:#999;width:calc(100% - 50px);}.navigation-search.jsx-763494471 .mdc-text-field .mdc-text-field__input:-ms-input-placeholder{color:#999;width:calc(100% - 50px);}.navigation-search.jsx-763494471 .mdc-text-field .mdc-text-field__input::-ms-input-placeholder{color:#999;width:calc(100% - 50px);}.navigation-search.jsx-763494471 .mdc-text-field .mdc-text-field__input::-webkit-input-placeholder{color:#999;width:calc(100% - 50px);}.navigation-search.jsx-763494471 .mdc-text-field .mdc-text-field__input::-moz-placeholder{color:#999;width:calc(100% - 50px);}.navigation-search.jsx-763494471 .mdc-text-field .mdc-text-field__input:-ms-input-placeholder{color:#999;width:calc(100% - 50px);}.navigation-search.jsx-763494471 .mdc-text-field .mdc-text-field__input::placeholder{color:#999;width:calc(100% - 50px);}.cancel.jsx-763494471{margin-left:0.5rem;}.cancel.jsx-763494471 .button{height:3.5rem;}\n/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInRleHQtZmllbGQtc2VhcmNoLnRzeCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUE2RGtCLEFBR3VCLEFBU0YsQUFPUSxBQUlOLEFBS0MsQUFLRixBQU1BLEFBTUEsQUFNQSxBQUtRLEFBSUwsVUEvQ0gsQ0FxQmEsQUFNQSxBQU1BLEFBTUEsQ0FoRGIsQ0F5QmIsQ0FnQ0EsSUF6Q0EsQ0FxQ0EsRUEzQ2lCLEVBVEYsWUE4QmYsQUFNQSxBQU1BLEFBTUEsQ0F0Q0EsbUNBU0EsMEJBbEJxQiw2RkFDckIiLCJmaWxlIjoidGV4dC1maWVsZC1zZWFyY2gudHN4Iiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IFJlYWN0LCB7IHVzZVJlZiwgdXNlRWZmZWN0LCB1c2VTdGF0ZSB9IGZyb20gXCJyZWFjdFwiO1xuaW1wb3J0IHsgVGV4dEZpZWxkIH0gZnJvbSBcIi4uL3RleHQtZmllbGRcIjtcbmltcG9ydCB7IEljb24gfSBmcm9tIFwiLi4vaWNvblwiO1xuaW1wb3J0IHsgQnV0dG9uIH0gZnJvbSBcIi4uL2J1dHRvblwiO1xuaW1wb3J0IHVzZU1lZGlhIGZyb20gXCJ1c2UtbWVkaWFcIjtcblxuaW50ZXJmYWNlIFRleHRGaWVsZFNlYXJjaFByb3BzIHtcbiAgdmFsdWU/OiBzdHJpbmc7XG4gIG9uQ2hhbmdlOiAodmFsdWU6IHN0cmluZykgPT4gdm9pZDtcbiAgb25TdWJtaXQ6ICgpID0+IHZvaWQ7XG4gIHBsYWNlaG9sZGVyPzogc3RyaW5nO1xuICBvbkNsb3NlPzogKCkgPT4gdm9pZDtcbn1cblxuZnVuY3Rpb24gVGV4dEZpZWxkU2VhcmNoKHtcbiAgdmFsdWUsXG4gIG9uQ2hhbmdlLFxuICBvblN1Ym1pdCxcbiAgb25DbG9zZSxcbiAgcGxhY2Vob2xkZXIsXG59OiBUZXh0RmllbGRTZWFyY2hQcm9wcykge1xuICAvLyBGb2N1cyB0aGUgc2VhcmNoIGJhciB3aGVuIG9wZW5lZFxuICBjb25zdCBpbnB1dCA9IHVzZVJlZjxIVE1MSW5wdXRFbGVtZW50PihudWxsKTtcbiAgdXNlRWZmZWN0KCgpID0+IHtcbiAgICBpZiAoaW5wdXQuY3VycmVudCkge1xuICAgICAgaW5wdXQuY3VycmVudC5mb2N1cygpO1xuICAgIH1cbiAgfSwgW2lucHV0XSk7XG5cbiAgY29uc3QgaGFuZGxlS2V5RG93biA9IChlOiBSZWFjdC5LZXlib2FyZEV2ZW50KSA9PiB7XG4gICAgaWYgKGUua2V5ID09PSBcIkVudGVyXCIpIHtcbiAgICAgIGUucHJldmVudERlZmF1bHQoKTtcbiAgICAgIG9uU3VibWl0KCk7XG4gICAgfVxuICB9O1xuXG4gIHJldHVybiAoXG4gICAgPD5cbiAgICAgIDxkaXYgY2xhc3NOYW1lPVwibmF2aWdhdGlvbi1zZWFyY2hcIj5cbiAgICAgICAgPFRleHRGaWVsZFxuICAgICAgICAgIGxlYWRpbmdJY29uPXtcbiAgICAgICAgICAgIHZhbHVlID8gKFxuICAgICAgICAgICAgICA8SWNvbiBpY29uPVwiY2xvc2VcIiB0aXRsZT1cImNsZWFyXCIgY2xhc3NOYW1lPVwiY2xvc2VJY29uXCIgLz5cbiAgICAgICAgICAgICkgOiAoXG4gICAgICAgICAgICAgIHVuZGVmaW5lZFxuICAgICAgICAgICAgKVxuICAgICAgICAgIH1cbiAgICAgICAgICB0cmFpbGluZ0ljb249e1xuICAgICAgICAgICAgPEljb24gaWNvbj1cInNlYXJjaFwiIHRpdGxlPVwic2VhcmNoXCIgY2xhc3NOYW1lPVwic2VhcmNoSWNvblwiIC8+XG4gICAgICAgICAgfVxuICAgICAgICAgIG9uVHJhaWxpbmdJY29uU2VsZWN0PXtvblN1Ym1pdH1cbiAgICAgICAgICBvbkxlYWRpbmdJY29uU2VsZWN0PXtvbkNsb3NlfVxuICAgICAgICAgIG9uQ2hhbmdlPXsoZTogUmVhY3QuRm9ybUV2ZW50PEhUTUxJbnB1dEVsZW1lbnQ+KSA9PlxuICAgICAgICAgICAgb25DaGFuZ2UoZS5jdXJyZW50VGFyZ2V0LnZhbHVlKVxuICAgICAgICAgIH1cbiAgICAgICAgICBvbktleURvd249e2hhbmRsZUtleURvd259XG4gICAgICAgICAgdmFsdWU9e3ZhbHVlfVxuICAgICAgICAgIHBsYWNlaG9sZGVyPXtwbGFjZWhvbGRlcn1cbiAgICAgICAgICByZWY9e2lucHV0fVxuICAgICAgICAvPlxuICAgICAgPC9kaXY+XG4gICAgICA8c3R5bGUganN4PntgXG4gICAgICAgIC5uYXZpZ2F0aW9uLXNlYXJjaCB7XG4gICAgICAgICAgaGVpZ2h0OiAxMDAlO1xuICAgICAgICAgIHdpZHRoOiAxMDAlO1xuICAgICAgICAgIGRpc3BsYXk6IGZsZXg7XG4gICAgICAgICAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAgICAgICAgfVxuXG4gICAgICAgIC5uYXZpZ2F0aW9uLXNlYXJjaFxuICAgICAgICAgIDpnbG9iYWwoLm1kYy10ZXh0LWZpZWxkLS13aXRoLWxlYWRpbmctaWNvbi5tZGMtdGV4dC1maWVsZC0td2l0aC10cmFpbGluZy1pY29uLm1kYy10ZXh0LWZpZWxkLS1kZW5zZVxuICAgICAgICAgICAgLm1kYy10ZXh0LWZpZWxkX19pY29uLmNsb3NlSWNvbikge1xuICAgICAgICAgIGxlZnQ6IGF1dG87XG4gICAgICAgICAgcmlnaHQ6IDM3cHg7XG4gICAgICAgICAgY3Vyc29yOiBwb2ludGVyO1xuICAgICAgICB9XG4gICAgICAgIC5uYXZpZ2F0aW9uLXNlYXJjaFxuICAgICAgICAgIDpnbG9iYWwoLm1kYy10ZXh0LWZpZWxkLS1vdXRsaW5lZC5tZGMtdGV4dC1maWVsZC0tZGVuc2UubWRjLXRleHQtZmllbGQtLXdpdGgtbGVhZGluZy1pY29uXG4gICAgICAgICAgICAubWRjLXRleHQtZmllbGRfX2lucHV0KSB7XG4gICAgICAgICAgcGFkZGluZy1sZWZ0OiAxMHB4O1xuICAgICAgICB9XG5cbiAgICAgICAgLm5hdmlnYXRpb24tc2VhcmNoID4gOmdsb2JhbCgqOmZpcnN0LWNoaWxkKSB7XG4gICAgICAgICAgZmxleC1ncm93OiAxO1xuICAgICAgICB9XG5cbiAgICAgICAgLm5hdmlnYXRpb24tc2VhcmNoIDpnbG9iYWwoLm1kYy10ZXh0LWZpZWxkIC5tZGMtdGV4dC1maWVsZF9faWNvbiksXG4gICAgICAgIC5uYXZpZ2F0aW9uLXNlYXJjaCA6Z2xvYmFsKC5tZGMtdGV4dC1maWVsZCAubWRjLXRleHQtZmllbGRfX2lucHV0KSB7XG4gICAgICAgICAgY29sb3I6IFwiIzAwMFwiO1xuICAgICAgICB9XG5cbiAgICAgICAgLm5hdmlnYXRpb24tc2VhcmNoXG4gICAgICAgICAgOmdsb2JhbCgubWRjLXRleHQtZmllbGQgLm1kYy10ZXh0LWZpZWxkX19pbnB1dDo6cGxhY2Vob2xkZXIpIHtcbiAgICAgICAgICBjb2xvcjogIzk5OTtcbiAgICAgICAgICB3aWR0aDogY2FsYygxMDAlIC0gNTBweCk7XG4gICAgICAgIH1cblxuICAgICAgICAuY2FuY2VsIHtcbiAgICAgICAgICBtYXJnaW4tbGVmdDogMC41cmVtO1xuICAgICAgICB9XG5cbiAgICAgICAgLmNhbmNlbCA6Z2xvYmFsKC5idXR0b24pIHtcbiAgICAgICAgICBoZWlnaHQ6IDMuNXJlbTtcbiAgICAgICAgfVxuICAgICAgYH08L3N0eWxlPlxuICAgIDwvPlxuICApO1xufVxuXG5leHBvcnQgZGVmYXVsdCBUZXh0RmllbGRTZWFyY2g7XG4iXX0= */\n/*@ sourceURL=text-field-search.tsx */"));
2379
+ }, ".navigation-search.jsx-763494471{height:100%;width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}.navigation-search.jsx-763494471 .mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon.closeIcon{left:auto;right:37px;cursor:pointer;}.navigation-search.jsx-763494471 .mdc-text-field--outlined.mdc-text-field--dense.mdc-text-field--with-leading-icon .mdc-text-field__input{padding-left:10px;}.navigation-search.jsx-763494471>*:first-child{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;}.navigation-search.jsx-763494471 .mdc-text-field .mdc-text-field__icon,.navigation-search.jsx-763494471 .mdc-text-field .mdc-text-field__input{color:\"#000\";}.navigation-search.jsx-763494471 .mdc-text-field .mdc-text-field__input::-webkit-input-placeholder{color:#999;width:calc(100% - 50px);}.navigation-search.jsx-763494471 .mdc-text-field .mdc-text-field__input:-ms-input-placeholder{color:#999;width:calc(100% - 50px);}.navigation-search.jsx-763494471 .mdc-text-field .mdc-text-field__input::-ms-input-placeholder{color:#999;width:calc(100% - 50px);}.navigation-search.jsx-763494471 .mdc-text-field .mdc-text-field__input::-webkit-input-placeholder{color:#999;width:calc(100% - 50px);}.navigation-search.jsx-763494471 .mdc-text-field .mdc-text-field__input::-moz-placeholder{color:#999;width:calc(100% - 50px);}.navigation-search.jsx-763494471 .mdc-text-field .mdc-text-field__input:-ms-input-placeholder{color:#999;width:calc(100% - 50px);}.navigation-search.jsx-763494471 .mdc-text-field .mdc-text-field__input::placeholder{color:#999;width:calc(100% - 50px);}.cancel.jsx-763494471{margin-left:0.5rem;}.cancel.jsx-763494471 .button{height:3.5rem;}\n/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInRleHQtZmllbGQtc2VhcmNoLnRzeCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUEyRGtCLEFBR3VCLEFBU0YsQUFPUSxBQUlOLEFBS0MsQUFLRixBQU1BLEFBTUEsQUFNQSxBQUtRLEFBSUwsVUEvQ0gsQ0FxQmEsQUFNQSxBQU1BLEFBTUEsQ0FoRGIsQ0F5QmIsQ0FnQ0EsSUF6Q0EsQ0FxQ0EsRUEzQ2lCLEVBVEYsWUE4QmYsQUFNQSxBQU1BLEFBTUEsQ0F0Q0EsbUNBU0EsMEJBbEJxQiw2RkFDckIiLCJmaWxlIjoidGV4dC1maWVsZC1zZWFyY2gudHN4Iiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IFJlYWN0LCB7IHVzZVJlZiwgdXNlRWZmZWN0LCB1c2VTdGF0ZSB9IGZyb20gXCJyZWFjdFwiO1xuaW1wb3J0IHsgVGV4dEZpZWxkIH0gZnJvbSBcIi4uL3RleHQtZmllbGRcIjtcbmltcG9ydCB7IEljb24gfSBmcm9tIFwiLi4vaWNvblwiO1xuaW1wb3J0IHsgQnV0dG9uIH0gZnJvbSBcIi4uL2J1dHRvblwiO1xuaW1wb3J0IHVzZU1lZGlhIGZyb20gXCJ1c2UtbWVkaWFcIjtcblxuaW50ZXJmYWNlIFRleHRGaWVsZFNlYXJjaFByb3BzIHtcbiAgdmFsdWU/OiBzdHJpbmc7XG4gIG9uQ2hhbmdlOiAodmFsdWU6IHN0cmluZykgPT4gdm9pZDtcbiAgb25TdWJtaXQ6ICgpID0+IHZvaWQ7XG4gIHBsYWNlaG9sZGVyPzogc3RyaW5nO1xufVxuXG5mdW5jdGlvbiBUZXh0RmllbGRTZWFyY2goe1xuICB2YWx1ZSxcbiAgb25DaGFuZ2UsXG4gIG9uU3VibWl0LFxuICBwbGFjZWhvbGRlcixcbn06IFRleHRGaWVsZFNlYXJjaFByb3BzKSB7XG4gIC8vIEZvY3VzIHRoZSBzZWFyY2ggYmFyIHdoZW4gb3BlbmVkXG4gIGNvbnN0IGlucHV0ID0gdXNlUmVmPEhUTUxJbnB1dEVsZW1lbnQ+KG51bGwpO1xuICB1c2VFZmZlY3QoKCkgPT4ge1xuICAgIGlmIChpbnB1dC5jdXJyZW50KSB7XG4gICAgICBpbnB1dC5jdXJyZW50LmZvY3VzKCk7XG4gICAgfVxuICB9LCBbaW5wdXRdKTtcblxuICBjb25zdCBoYW5kbGVLZXlEb3duID0gKGU6IFJlYWN0LktleWJvYXJkRXZlbnQpID0+IHtcbiAgICBpZiAoZS5rZXkgPT09IFwiRW50ZXJcIikge1xuICAgICAgZS5wcmV2ZW50RGVmYXVsdCgpO1xuICAgICAgb25TdWJtaXQoKTtcbiAgICB9XG4gIH07XG5cbiAgcmV0dXJuIChcbiAgICA8PlxuICAgICAgPGRpdiBjbGFzc05hbWU9XCJuYXZpZ2F0aW9uLXNlYXJjaFwiPlxuICAgICAgICA8VGV4dEZpZWxkXG4gICAgICAgICAgbGVhZGluZ0ljb249e1xuICAgICAgICAgICAgdmFsdWUgPyAoXG4gICAgICAgICAgICAgIDxJY29uIGljb249XCJjbG9zZVwiIHRpdGxlPVwiY2xlYXJcIiBjbGFzc05hbWU9XCJjbG9zZUljb25cIiAvPlxuICAgICAgICAgICAgKSA6IChcbiAgICAgICAgICAgICAgdW5kZWZpbmVkXG4gICAgICAgICAgICApXG4gICAgICAgICAgfVxuICAgICAgICAgIHRyYWlsaW5nSWNvbj17XG4gICAgICAgICAgICA8SWNvbiBpY29uPVwic2VhcmNoXCIgdGl0bGU9XCJzZWFyY2hcIiBjbGFzc05hbWU9XCJzZWFyY2hJY29uXCIgLz5cbiAgICAgICAgICB9XG4gICAgICAgICAgb25UcmFpbGluZ0ljb25TZWxlY3Q9e29uU3VibWl0fVxuICAgICAgICAgIG9uTGVhZGluZ0ljb25TZWxlY3Q9eygpID0+IG9uQ2hhbmdlKFwiXCIpfVxuICAgICAgICAgIG9uQ2hhbmdlPXsoZTogUmVhY3QuRm9ybUV2ZW50PEhUTUxJbnB1dEVsZW1lbnQ+KSA9PlxuICAgICAgICAgICAgb25DaGFuZ2UoZS5jdXJyZW50VGFyZ2V0LnZhbHVlKVxuICAgICAgICAgIH1cbiAgICAgICAgICBvbktleURvd249e2hhbmRsZUtleURvd259XG4gICAgICAgICAgdmFsdWU9e3ZhbHVlfVxuICAgICAgICAgIHBsYWNlaG9sZGVyPXtwbGFjZWhvbGRlcn1cbiAgICAgICAgICByZWY9e2lucHV0fVxuICAgICAgICAvPlxuICAgICAgPC9kaXY+XG4gICAgICA8c3R5bGUganN4PntgXG4gICAgICAgIC5uYXZpZ2F0aW9uLXNlYXJjaCB7XG4gICAgICAgICAgaGVpZ2h0OiAxMDAlO1xuICAgICAgICAgIHdpZHRoOiAxMDAlO1xuICAgICAgICAgIGRpc3BsYXk6IGZsZXg7XG4gICAgICAgICAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAgICAgICAgfVxuXG4gICAgICAgIC5uYXZpZ2F0aW9uLXNlYXJjaFxuICAgICAgICAgIDpnbG9iYWwoLm1kYy10ZXh0LWZpZWxkLS13aXRoLWxlYWRpbmctaWNvbi5tZGMtdGV4dC1maWVsZC0td2l0aC10cmFpbGluZy1pY29uLm1kYy10ZXh0LWZpZWxkLS1kZW5zZVxuICAgICAgICAgICAgLm1kYy10ZXh0LWZpZWxkX19pY29uLmNsb3NlSWNvbikge1xuICAgICAgICAgIGxlZnQ6IGF1dG87XG4gICAgICAgICAgcmlnaHQ6IDM3cHg7XG4gICAgICAgICAgY3Vyc29yOiBwb2ludGVyO1xuICAgICAgICB9XG4gICAgICAgIC5uYXZpZ2F0aW9uLXNlYXJjaFxuICAgICAgICAgIDpnbG9iYWwoLm1kYy10ZXh0LWZpZWxkLS1vdXRsaW5lZC5tZGMtdGV4dC1maWVsZC0tZGVuc2UubWRjLXRleHQtZmllbGQtLXdpdGgtbGVhZGluZy1pY29uXG4gICAgICAgICAgICAubWRjLXRleHQtZmllbGRfX2lucHV0KSB7XG4gICAgICAgICAgcGFkZGluZy1sZWZ0OiAxMHB4O1xuICAgICAgICB9XG5cbiAgICAgICAgLm5hdmlnYXRpb24tc2VhcmNoID4gOmdsb2JhbCgqOmZpcnN0LWNoaWxkKSB7XG4gICAgICAgICAgZmxleC1ncm93OiAxO1xuICAgICAgICB9XG5cbiAgICAgICAgLm5hdmlnYXRpb24tc2VhcmNoIDpnbG9iYWwoLm1kYy10ZXh0LWZpZWxkIC5tZGMtdGV4dC1maWVsZF9faWNvbiksXG4gICAgICAgIC5uYXZpZ2F0aW9uLXNlYXJjaCA6Z2xvYmFsKC5tZGMtdGV4dC1maWVsZCAubWRjLXRleHQtZmllbGRfX2lucHV0KSB7XG4gICAgICAgICAgY29sb3I6IFwiIzAwMFwiO1xuICAgICAgICB9XG5cbiAgICAgICAgLm5hdmlnYXRpb24tc2VhcmNoXG4gICAgICAgICAgOmdsb2JhbCgubWRjLXRleHQtZmllbGQgLm1kYy10ZXh0LWZpZWxkX19pbnB1dDo6cGxhY2Vob2xkZXIpIHtcbiAgICAgICAgICBjb2xvcjogIzk5OTtcbiAgICAgICAgICB3aWR0aDogY2FsYygxMDAlIC0gNTBweCk7XG4gICAgICAgIH1cblxuICAgICAgICAuY2FuY2VsIHtcbiAgICAgICAgICBtYXJnaW4tbGVmdDogMC41cmVtO1xuICAgICAgICB9XG5cbiAgICAgICAgLmNhbmNlbCA6Z2xvYmFsKC5idXR0b24pIHtcbiAgICAgICAgICBoZWlnaHQ6IDMuNXJlbTtcbiAgICAgICAgfVxuICAgICAgYH08L3N0eWxlPlxuICAgIDwvPlxuICApO1xufVxuXG5leHBvcnQgZGVmYXVsdCBUZXh0RmllbGRTZWFyY2g7XG4iXX0= */\n/*@ sourceURL=text-field-search.tsx */"));
2380
2380
  }
2381
2381
 
2382
2382
  TextFieldSearch.propTypes = {
2383
2383
  value: _pt.string,
2384
2384
  onChange: _pt.func.isRequired,
2385
2385
  onSubmit: _pt.func.isRequired,
2386
- placeholder: _pt.string,
2387
- onClose: _pt.func
2386
+ placeholder: _pt.string
2388
2387
  };
2389
2388
 
2390
2389
  function SelectHelperText(props) {
@@ -8931,34 +8930,56 @@ var Modal = function Modal(_ref) {
8931
8930
  cancelText = _ref$cancelText === void 0 ? "Cancel" : _ref$cancelText,
8932
8931
  _ref$disableAcceptBut = _ref.disableAcceptButton,
8933
8932
  disableAcceptButton = _ref$disableAcceptBut === void 0 ? false : _ref$disableAcceptBut,
8934
- minimal = _ref.minimal;
8933
+ minimal = _ref.minimal,
8934
+ isConfirmationMessage = _ref.isConfirmationMessage,
8935
+ onCancel = _ref.onCancel;
8935
8936
  var theme = useTheme();
8936
8937
  var setColorButton = getColorToken(theme, "foreground", buttonColor);
8937
8938
  var scope = {
8938
8939
  styles: React.createElement(_JSXStyle, {
8939
- id: "1001008648",
8940
+ id: "3097825294",
8940
8941
  dynamic: [id, setWidth && "100% !important", id, setWidth && "100% !important", setWidth, buttonAlign]
8941
- }, ".".concat(id, " > .mdc-dialog__container{width:").concat(setWidth && "100% !important", ";}.").concat(id, " > .mdc-dialog__container > .mdc-dialog__surface{width:").concat(setWidth && "100% !important", ";max-width:").concat(setWidth, " !important;}.modal-footer.__jsx-style-dynamic-selector{-webkit-box-pack:").concat(buttonAlign, " !important;-webkit-justify-content:").concat(buttonAlign, " !important;-ms-flex-pack:").concat(buttonAlign, " !important;justify-content:").concat(buttonAlign, " !important;}\n/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIm1vZGFsLnRzeCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFrRDJCLEFBRzBDLEFBR0EsQUFJcUIsbUNBTjFELEFBR29ELGtEQUNwRCxrSkFHQSIsImZpbGUiOiJtb2RhbC50c3giLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgUmVhY3QsIHsgRnJhZ21lbnQgfSBmcm9tIFwicmVhY3RcIjtcblxuaW1wb3J0IERpYWxvZywgeyBEaWFsb2dDb250ZW50LCBEaWFsb2dGb290ZXIgfSBmcm9tIFwiQG1hdGVyaWFsL3JlYWN0LWRpYWxvZ1wiO1xuaW1wb3J0IGNsYXNzbmFtZXMgZnJvbSBcImNsYXNzbmFtZXNcIjtcbmltcG9ydCBjc3MgZnJvbSBcInN0eWxlZC1qc3gvY3NzXCI7XG5cbmltcG9ydCB7IHVzZVRoZW1lLCBnZXRDb2xvclRva2VuLCBDb2xvclNwZWNpZmllciB9IGZyb20gXCIuLi8uLi90aGVtZS90aGVtZVwiO1xuaW1wb3J0IHsgSWNvbkJ1dHRvbiwgSWNvbiB9IGZyb20gXCIuLi9pY29uXCI7XG5pbXBvcnQgeyBCdXR0b24gfSBmcm9tIFwiLi4vYnV0dG9uXCI7XG5pbXBvcnQgeyBTdGFjayB9IGZyb20gXCIuLi9sYXlvdXRcIjtcblxuZXhwb3J0IGludGVyZmFjZSBNb2RhbFByb3BzIHtcbiAgaWQ6IHN0cmluZztcbiAgaXNPcGVuOiBib29sZWFuO1xuICB0b2dnbGVNb2RhbDogKGFyZzogYm9vbGVhbikgPT4gdm9pZDtcbiAgbW9kYWxDb250ZW50OiBSZWFjdC5SZWFjdE5vZGU7XG4gIG1vZGFsVGl0bGU/OiBSZWFjdC5SZWFjdE5vZGU7XG4gIG9uQWNjZXB0PzogKCkgPT4gdm9pZDtcbiAgc2V0V2lkdGg/OiBzdHJpbmc7XG4gIGJ1dHRvbkFsaWduPzogXCJjZW50ZXJcIiB8IFwibGVmdFwiIHwgXCJyaWdodFwiO1xuICBidXR0b25Db2xvcj86IENvbG9yU3BlY2lmaWVyO1xuICBub0NhbmNlbEJ1dHRvbj86IGJvb2xlYW47XG4gIG5vQ2xvc2VCdXR0b24/OiBib29sZWFuO1xuICBtaW5pbWFsPzogYm9vbGVhbjtcbiAgYWNjZXB0VGV4dD86IHN0cmluZztcbiAgY2FuY2VsVGV4dD86IHN0cmluZztcbiAgZGlzYWJsZUFjY2VwdEJ1dHRvbj86IGJvb2xlYW47XG59XG5cbmNvbnN0IE1vZGFsID0gKHtcbiAgaWQsXG4gIGlzT3BlbixcbiAgdG9nZ2xlTW9kYWwsXG4gIG1vZGFsQ29udGVudCxcbiAgbW9kYWxUaXRsZSxcbiAgb25BY2NlcHQsXG4gIHNldFdpZHRoLFxuICBidXR0b25BbGlnbiA9IFwicmlnaHRcIixcbiAgYnV0dG9uQ29sb3IgPSBcInByaW1hcnlcIixcbiAgbm9DYW5jZWxCdXR0b24sXG4gIG5vQ2xvc2VCdXR0b24sXG4gIGFjY2VwdFRleHQgPSBcIkFjY2VwdFwiLFxuICBjYW5jZWxUZXh0ID0gXCJDYW5jZWxcIixcbiAgZGlzYWJsZUFjY2VwdEJ1dHRvbiA9IGZhbHNlLFxuICBtaW5pbWFsLFxufTogTW9kYWxQcm9wcykgPT4ge1xuICBjb25zdCB0aGVtZSA9IHVzZVRoZW1lKCk7XG5cbiAgY29uc3Qgc2V0Q29sb3JCdXR0b24gPSBnZXRDb2xvclRva2VuKHRoZW1lLCBcImZvcmVncm91bmRcIiwgYnV0dG9uQ29sb3IpO1xuXG4gIGNvbnN0IHNjb3BlID0gY3NzLnJlc29sdmVgXG4gICAgOmdsb2JhbCguJHtpZH0gPiAubWRjLWRpYWxvZ19fY29udGFpbmVyKSB7XG4gICAgICB3aWR0aDogJHtzZXRXaWR0aCAmJiBcIjEwMCUgIWltcG9ydGFudFwifTtcbiAgICB9XG4gICAgOmdsb2JhbCguJHtpZH0gPiAubWRjLWRpYWxvZ19fY29udGFpbmVyID4gLm1kYy1kaWFsb2dfX3N1cmZhY2UpIHtcbiAgICAgIHdpZHRoOiAke3NldFdpZHRoICYmIFwiMTAwJSAhaW1wb3J0YW50XCJ9O1xuICAgICAgbWF4LXdpZHRoOiAke3NldFdpZHRofSAhaW1wb3J0YW50O1xuICAgIH1cbiAgICAubW9kYWwtZm9vdGVyIHtcbiAgICAgIGp1c3RpZnktY29udGVudDogJHtidXR0b25BbGlnbn0gIWltcG9ydGFudDtcbiAgICB9XG4gIGA7XG5cbiAgcmV0dXJuIChcbiAgICA8RnJhZ21lbnQ+XG4gICAgICA8RGlhbG9nIG9wZW49e2lzT3Blbn0gY2xhc3NOYW1lPXtpZH0gb25DbG9zZT17KCkgPT4gdG9nZ2xlTW9kYWwoZmFsc2UpfT5cbiAgICAgICAgeyFtaW5pbWFsID8gKFxuICAgICAgICAgIDxTdGFjaz5cbiAgICAgICAgICAgIHttb2RhbFRpdGxlICYmIChcbiAgICAgICAgICAgICAgPGRpdiBzdHlsZT17eyBmbGV4R3JvdzogMSwgcGFkZGluZzogXCIyMHB4IDBweCAyNHB4IDI0cHhcIiB9fT5cbiAgICAgICAgICAgICAgICB7bW9kYWxUaXRsZX1cbiAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICApfVxuICAgICAgICAgICAgPGRpdj5cbiAgICAgICAgICAgICAgeyFub0NhbmNlbEJ1dHRvbiAmJiAoXG4gICAgICAgICAgICAgICAgPEljb25CdXR0b24gb25DbGljaz17KCkgPT4gdG9nZ2xlTW9kYWwoZmFsc2UpfT5cbiAgICAgICAgICAgICAgICAgIDxJY29uIGljb249XCJjbG9zZVwiIC8+XG4gICAgICAgICAgICAgICAgPC9JY29uQnV0dG9uPlxuICAgICAgICAgICAgICApfVxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgPC9TdGFjaz5cbiAgICAgICAgKSA6IChcbiAgICAgICAgICA8PjwvPlxuICAgICAgICApfVxuICAgICAgICA8RGlhbG9nQ29udGVudD57bW9kYWxDb250ZW50fTwvRGlhbG9nQ29udGVudD5cbiAgICAgICAgeyFtaW5pbWFsID8gKFxuICAgICAgICAgIDxEaWFsb2dGb290ZXJcbiAgICAgICAgICAgIGNsYXNzTmFtZT17Y2xhc3NuYW1lcyhcIm1vZGFsLWZvb3RlciBcIiwgc2NvcGUuY2xhc3NOYW1lKX1cbiAgICAgICAgICA+XG4gICAgICAgICAgICB7IW5vQ2xvc2VCdXR0b24gJiYgKFxuICAgICAgICAgICAgICA8QnV0dG9uXG4gICAgICAgICAgICAgICAgY29sb3I9e3sgZm9yZWdyb3VuZDogc2V0Q29sb3JCdXR0b24sIGJhY2tncm91bmQ6IFwiI2ZmZmZmZlwiIH19XG4gICAgICAgICAgICAgICAgb25DbGljaz17KCkgPT4gdG9nZ2xlTW9kYWwoZmFsc2UpfVxuICAgICAgICAgICAgICAgIG91dGxpbmVkPXt0cnVlfVxuICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAge2NhbmNlbFRleHR9XG4gICAgICAgICAgICAgIDwvQnV0dG9uPlxuICAgICAgICAgICAgKX1cbiAgICAgICAgICAgIHtvbkFjY2VwdCAmJiAoXG4gICAgICAgICAgICAgIDxCdXR0b25cbiAgICAgICAgICAgICAgICBkaXNhYmxlZD17ZGlzYWJsZUFjY2VwdEJ1dHRvbn1cbiAgICAgICAgICAgICAgICBvbkNsaWNrPXtvbkFjY2VwdH1cbiAgICAgICAgICAgICAgICBjb2xvcj17eyBmb3JlZ3JvdW5kOiBzZXRDb2xvckJ1dHRvbiwgYmFja2dyb3VuZDogXCIjZmZmZmZmXCIgfX1cbiAgICAgICAgICAgICAgICBvdXRsaW5lZD17dHJ1ZX1cbiAgICAgICAgICAgICAgICBzdHlsZT17eyBtYXJnaW5MZWZ0OiBcIjEwcHhcIiB9fVxuICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAge2FjY2VwdFRleHR9XG4gICAgICAgICAgICAgIDwvQnV0dG9uPlxuICAgICAgICAgICAgKX1cbiAgICAgICAgICA8L0RpYWxvZ0Zvb3Rlcj5cbiAgICAgICAgKSA6IChcbiAgICAgICAgICA8PjwvPlxuICAgICAgICApfVxuICAgICAgPC9EaWFsb2c+XG4gICAgICB7c2NvcGUuc3R5bGVzfVxuICAgIDwvRnJhZ21lbnQ+XG4gICk7XG59O1xuXG5leHBvcnQgZGVmYXVsdCBNb2RhbDtcbiJdfQ== */\n/*@ sourceURL=modal.tsx */")),
8942
- className: _JSXStyle.dynamic([["1001008648", [id, setWidth && "100% !important", id, setWidth && "100% !important", setWidth, buttonAlign]]])
8942
+ }, ".".concat(id, " > .mdc-dialog__container{width:").concat(setWidth && "100% !important", ";}.").concat(id, " > .mdc-dialog__container > .mdc-dialog__surface{width:").concat(setWidth && "100% !important", ";max-width:").concat(setWidth, " !important;}.modal-footer.__jsx-style-dynamic-selector{-webkit-box-pack:").concat(buttonAlign, " !important;-webkit-justify-content:").concat(buttonAlign, " !important;-ms-flex-pack:").concat(buttonAlign, " !important;justify-content:").concat(buttonAlign, " !important;}.modal-footer.__jsx-style-dynamic-selector .cancel-remove-button,.accept-remove-button{border-radius:20px;height:32px;padding:0 16px;}.modal-footer.__jsx-style-dynamic-selector .cancel-remove-button{background:#2d8a75;color:#ffffff;}.modal-footer.__jsx-style-dynamic-selector .cancel-remove-button:hover{background:#65a797;}.confirm-modal-header .confirm-modal-button{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;width:100%;}.confirm-modal-header .confirm-modal-button button{padding:5px !important;}.confirm-modal-header .confirm-modal-button button .icon{color:#2d8a75;}.modal-confirmation.__jsx-style-dynamic-selector .mdc-dialog__container.__jsx-style-dynamic-selector .mdc-dialog__surface.__jsx-style-dynamic-selector{border-radius:8px !important;}\n/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIm1vZGFsLnRzeCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFzRDJCLEFBRzBDLEFBR0EsQUFJcUIsQUFJckMsQUFLQSxBQUlBLEFBR04sQUFLVSxBQUdULEFBR2UsY0FGL0IsS0FwQmMsQUFLRSxBQUloQixJQVFBLE1BTUEsRUF0QmlCLEVBS2pCLEVBakJBLEFBR29ELFdBVXBELDRCQVUyQixXQW5CM0Isc0ZBb0JhLFdBQ2IsaURBbEJBIiwiZmlsZSI6Im1vZGFsLnRzeCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBSZWFjdCwgeyBGcmFnbWVudCB9IGZyb20gXCJyZWFjdFwiO1xuXG5pbXBvcnQgRGlhbG9nLCB7IERpYWxvZ0NvbnRlbnQsIERpYWxvZ0Zvb3RlciB9IGZyb20gXCJAbWF0ZXJpYWwvcmVhY3QtZGlhbG9nXCI7XG5pbXBvcnQgY2xhc3NuYW1lcyBmcm9tIFwiY2xhc3NuYW1lc1wiO1xuaW1wb3J0IGNzcyBmcm9tIFwic3R5bGVkLWpzeC9jc3NcIjtcblxuaW1wb3J0IHsgdXNlVGhlbWUsIGdldENvbG9yVG9rZW4sIENvbG9yU3BlY2lmaWVyIH0gZnJvbSBcIi4uLy4uL3RoZW1lL3RoZW1lXCI7XG5pbXBvcnQgeyBJY29uQnV0dG9uLCBJY29uIH0gZnJvbSBcIi4uL2ljb25cIjtcbmltcG9ydCB7IEJ1dHRvbiB9IGZyb20gXCIuLi9idXR0b25cIjtcbmltcG9ydCB7IFN0YWNrIH0gZnJvbSBcIi4uL2xheW91dFwiO1xuXG5leHBvcnQgaW50ZXJmYWNlIE1vZGFsUHJvcHMge1xuICBpZDogc3RyaW5nO1xuICBpc09wZW46IGJvb2xlYW47XG4gIHRvZ2dsZU1vZGFsOiAoYXJnOiBib29sZWFuKSA9PiB2b2lkO1xuICBtb2RhbENvbnRlbnQ6IFJlYWN0LlJlYWN0Tm9kZTtcbiAgbW9kYWxUaXRsZT86IFJlYWN0LlJlYWN0Tm9kZTtcbiAgb25BY2NlcHQ/OiAoKSA9PiB2b2lkO1xuICBzZXRXaWR0aD86IHN0cmluZztcbiAgYnV0dG9uQWxpZ24/OiBcImNlbnRlclwiIHwgXCJsZWZ0XCIgfCBcInJpZ2h0XCI7XG4gIGJ1dHRvbkNvbG9yPzogQ29sb3JTcGVjaWZpZXI7XG4gIG5vQ2FuY2VsQnV0dG9uPzogYm9vbGVhbjtcbiAgbm9DbG9zZUJ1dHRvbj86IGJvb2xlYW47XG4gIG1pbmltYWw/OiBib29sZWFuO1xuICBhY2NlcHRUZXh0Pzogc3RyaW5nO1xuICBjYW5jZWxUZXh0Pzogc3RyaW5nO1xuICBkaXNhYmxlQWNjZXB0QnV0dG9uPzogYm9vbGVhbjtcbiAgaXNDb25maXJtYXRpb25NZXNzYWdlPzogYm9vbGVhbjtcbiAgb25DYW5jZWw/OiAoKSA9PiB2b2lkO1xufVxuXG5jb25zdCBNb2RhbCA9ICh7XG4gIGlkLFxuICBpc09wZW4sXG4gIHRvZ2dsZU1vZGFsLFxuICBtb2RhbENvbnRlbnQsXG4gIG1vZGFsVGl0bGUsXG4gIG9uQWNjZXB0LFxuICBzZXRXaWR0aCxcbiAgYnV0dG9uQWxpZ24gPSBcInJpZ2h0XCIsXG4gIGJ1dHRvbkNvbG9yID0gXCJwcmltYXJ5XCIsXG4gIG5vQ2FuY2VsQnV0dG9uLFxuICBub0Nsb3NlQnV0dG9uLFxuICBhY2NlcHRUZXh0ID0gXCJBY2NlcHRcIixcbiAgY2FuY2VsVGV4dCA9IFwiQ2FuY2VsXCIsXG4gIGRpc2FibGVBY2NlcHRCdXR0b24gPSBmYWxzZSxcbiAgbWluaW1hbCxcbiAgaXNDb25maXJtYXRpb25NZXNzYWdlLFxuICBvbkNhbmNlbCxcbn06IE1vZGFsUHJvcHMpID0+IHtcbiAgY29uc3QgdGhlbWUgPSB1c2VUaGVtZSgpO1xuXG4gIGNvbnN0IHNldENvbG9yQnV0dG9uID0gZ2V0Q29sb3JUb2tlbih0aGVtZSwgXCJmb3JlZ3JvdW5kXCIsIGJ1dHRvbkNvbG9yKTtcblxuICBjb25zdCBzY29wZSA9IGNzcy5yZXNvbHZlYFxuICAgIDpnbG9iYWwoLiR7aWR9ID4gLm1kYy1kaWFsb2dfX2NvbnRhaW5lcikge1xuICAgICAgd2lkdGg6ICR7c2V0V2lkdGggJiYgXCIxMDAlICFpbXBvcnRhbnRcIn07XG4gICAgfVxuICAgIDpnbG9iYWwoLiR7aWR9ID4gLm1kYy1kaWFsb2dfX2NvbnRhaW5lciA+IC5tZGMtZGlhbG9nX19zdXJmYWNlKSB7XG4gICAgICB3aWR0aDogJHtzZXRXaWR0aCAmJiBcIjEwMCUgIWltcG9ydGFudFwifTtcbiAgICAgIG1heC13aWR0aDogJHtzZXRXaWR0aH0gIWltcG9ydGFudDtcbiAgICB9XG4gICAgLm1vZGFsLWZvb3RlciB7XG4gICAgICBqdXN0aWZ5LWNvbnRlbnQ6ICR7YnV0dG9uQWxpZ259ICFpbXBvcnRhbnQ7XG4gICAgfVxuICAgIC5tb2RhbC1mb290ZXIgOmdsb2JhbCguY2FuY2VsLXJlbW92ZS1idXR0b24pLFxuICAgIDpnbG9iYWwoLmFjY2VwdC1yZW1vdmUtYnV0dG9uKSB7XG4gICAgICBib3JkZXItcmFkaXVzOiAyMHB4O1xuICAgICAgaGVpZ2h0OiAzMnB4O1xuICAgICAgcGFkZGluZzogMCAxNnB4O1xuICAgIH1cbiAgICAubW9kYWwtZm9vdGVyIDpnbG9iYWwoLmNhbmNlbC1yZW1vdmUtYnV0dG9uKSB7XG4gICAgICBiYWNrZ3JvdW5kOiAjMmQ4YTc1O1xuICAgICAgY29sb3I6ICNmZmZmZmY7XG4gICAgfVxuICAgIC5tb2RhbC1mb290ZXIgOmdsb2JhbCguY2FuY2VsLXJlbW92ZS1idXR0b246aG92ZXIpIHtcbiAgICAgIGJhY2tncm91bmQ6ICM2NWE3OTc7XG4gICAgfVxuICAgIDpnbG9iYWwoLmNvbmZpcm0tbW9kYWwtaGVhZGVyIC5jb25maXJtLW1vZGFsLWJ1dHRvbikge1xuICAgICAgZGlzcGxheTogZmxleDtcbiAgICAgIGp1c3RpZnktY29udGVudDogZmxleC1lbmQ7XG4gICAgICB3aWR0aDogMTAwJTtcbiAgICB9XG4gICAgOmdsb2JhbCguY29uZmlybS1tb2RhbC1oZWFkZXIgLmNvbmZpcm0tbW9kYWwtYnV0dG9uIGJ1dHRvbikge1xuICAgICAgcGFkZGluZzogNXB4ICFpbXBvcnRhbnQ7XG4gICAgfVxuICAgIDpnbG9iYWwoLmNvbmZpcm0tbW9kYWwtaGVhZGVyIC5jb25maXJtLW1vZGFsLWJ1dHRvbiBidXR0b24gLmljb24pIHtcbiAgICAgIGNvbG9yOiAjMmQ4YTc1O1xuICAgIH1cbiAgICAubW9kYWwtY29uZmlybWF0aW9uIC5tZGMtZGlhbG9nX19jb250YWluZXIgLm1kYy1kaWFsb2dfX3N1cmZhY2Uge1xuICAgICAgYm9yZGVyLXJhZGl1czogOHB4ICFpbXBvcnRhbnQ7XG4gICAgfVxuICBgO1xuXG4gIHJldHVybiAoXG4gICAgPEZyYWdtZW50PlxuICAgICAgPERpYWxvZ1xuICAgICAgICBvcGVuPXtpc09wZW59XG4gICAgICAgIGNsYXNzTmFtZT17Y2xhc3NuYW1lcyhcbiAgICAgICAgICBpZCxcbiAgICAgICAgICBpc0NvbmZpcm1hdGlvbk1lc3NhZ2UgPyBcIm1vZGFsLWNvbmZpcm1hdGlvblwiIDogXCJcIlxuICAgICAgICApfVxuICAgICAgICBvbkNsb3NlPXsoKSA9PiB0b2dnbGVNb2RhbChmYWxzZSl9XG4gICAgICA+XG4gICAgICAgIHshbWluaW1hbCA/IChcbiAgICAgICAgICA8U3RhY2tcbiAgICAgICAgICAgIGNsYXNzTmFtZT17aXNDb25maXJtYXRpb25NZXNzYWdlID8gXCJjb25maXJtLW1vZGFsLWhlYWRlclwiIDogXCJcIn1cbiAgICAgICAgICA+XG4gICAgICAgICAgICB7bW9kYWxUaXRsZSAmJiAoXG4gICAgICAgICAgICAgIDxkaXYgc3R5bGU9e3sgZmxleEdyb3c6IDEsIHBhZGRpbmc6IFwiMjBweCAwcHggMjRweCAyNHB4XCIgfX0+XG4gICAgICAgICAgICAgICAge21vZGFsVGl0bGV9XG4gICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgKX1cbiAgICAgICAgICAgIDxkaXZcbiAgICAgICAgICAgICAgY2xhc3NOYW1lPXtpc0NvbmZpcm1hdGlvbk1lc3NhZ2UgPyBcImNvbmZpcm0tbW9kYWwtYnV0dG9uXCIgOiBcIlwifVxuICAgICAgICAgICAgPlxuICAgICAgICAgICAgICB7IW5vQ2FuY2VsQnV0dG9uICYmIChcbiAgICAgICAgICAgICAgICA8SWNvbkJ1dHRvbiBvbkNsaWNrPXsoKSA9PiB0b2dnbGVNb2RhbChmYWxzZSl9PlxuICAgICAgICAgICAgICAgICAgPEljb24gaWNvbj1cImNsb3NlXCIgLz5cbiAgICAgICAgICAgICAgICA8L0ljb25CdXR0b24+XG4gICAgICAgICAgICAgICl9XG4gICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICA8L1N0YWNrPlxuICAgICAgICApIDogKFxuICAgICAgICAgIDw+PC8+XG4gICAgICAgICl9XG4gICAgICAgIDxEaWFsb2dDb250ZW50Pnttb2RhbENvbnRlbnR9PC9EaWFsb2dDb250ZW50PlxuICAgICAgICB7IW1pbmltYWwgPyAoXG4gICAgICAgICAgaXNDb25maXJtYXRpb25NZXNzYWdlID8gKFxuICAgICAgICAgICAgPERpYWxvZ0Zvb3RlclxuICAgICAgICAgICAgICBjbGFzc05hbWU9e2NsYXNzbmFtZXMoXCJtb2RhbC1mb290ZXIgXCIsIHNjb3BlLmNsYXNzTmFtZSl9XG4gICAgICAgICAgICA+XG4gICAgICAgICAgICAgIHshbm9DbG9zZUJ1dHRvbiAmJiAoXG4gICAgICAgICAgICAgICAgPEJ1dHRvblxuICAgICAgICAgICAgICAgICAgb25DbGljaz17KCkgPT4ge1xuICAgICAgICAgICAgICAgICAgICB0b2dnbGVNb2RhbChmYWxzZSk7XG4gICAgICAgICAgICAgICAgICAgIG9uQ2FuY2VsICYmIG9uQ2FuY2VsKCk7XG4gICAgICAgICAgICAgICAgICB9fVxuICAgICAgICAgICAgICAgICAgY2xhc3NOYW1lPVwiY2FuY2VsLXJlbW92ZS1idXR0b25cIlxuICAgICAgICAgICAgICAgID5cbiAgICAgICAgICAgICAgICAgIHtjYW5jZWxUZXh0fVxuICAgICAgICAgICAgICAgIDwvQnV0dG9uPlxuICAgICAgICAgICAgICApfVxuICAgICAgICAgICAgICB7b25BY2NlcHQgJiYgKFxuICAgICAgICAgICAgICAgIDxCdXR0b25cbiAgICAgICAgICAgICAgICAgIGRpc2FibGVkPXtkaXNhYmxlQWNjZXB0QnV0dG9ufVxuICAgICAgICAgICAgICAgICAgb25DbGljaz17b25BY2NlcHR9XG4gICAgICAgICAgICAgICAgICBvdXRsaW5lZD17dHJ1ZX1cbiAgICAgICAgICAgICAgICAgIHN0eWxlPXt7IG1hcmdpbkxlZnQ6IFwiMjBweFwiIH19XG4gICAgICAgICAgICAgICAgICBjbGFzc05hbWU9XCJhY2NlcHQtcmVtb3ZlLWJ1dHRvblwiXG4gICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAge2FjY2VwdFRleHR9XG4gICAgICAgICAgICAgICAgPC9CdXR0b24+XG4gICAgICAgICAgICAgICl9XG4gICAgICAgICAgICA8L0RpYWxvZ0Zvb3Rlcj5cbiAgICAgICAgICApIDogKFxuICAgICAgICAgICAgPERpYWxvZ0Zvb3RlclxuICAgICAgICAgICAgICBjbGFzc05hbWU9e2NsYXNzbmFtZXMoXCJtb2RhbC1mb290ZXIgXCIsIHNjb3BlLmNsYXNzTmFtZSl9XG4gICAgICAgICAgICA+XG4gICAgICAgICAgICAgIHshbm9DbG9zZUJ1dHRvbiAmJiAoXG4gICAgICAgICAgICAgICAgPEJ1dHRvblxuICAgICAgICAgICAgICAgICAgY29sb3I9e3sgZm9yZWdyb3VuZDogc2V0Q29sb3JCdXR0b24sIGJhY2tncm91bmQ6IFwiI2ZmZmZmZlwiIH19XG4gICAgICAgICAgICAgICAgICBvbkNsaWNrPXsoKSA9PiB0b2dnbGVNb2RhbChmYWxzZSl9XG4gICAgICAgICAgICAgICAgICBvdXRsaW5lZD17dHJ1ZX1cbiAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgICB7Y2FuY2VsVGV4dH1cbiAgICAgICAgICAgICAgICA8L0J1dHRvbj5cbiAgICAgICAgICAgICAgKX1cbiAgICAgICAgICAgICAge29uQWNjZXB0ICYmIChcbiAgICAgICAgICAgICAgICA8QnV0dG9uXG4gICAgICAgICAgICAgICAgICBkaXNhYmxlZD17ZGlzYWJsZUFjY2VwdEJ1dHRvbn1cbiAgICAgICAgICAgICAgICAgIG9uQ2xpY2s9e29uQWNjZXB0fVxuICAgICAgICAgICAgICAgICAgY29sb3I9e3sgZm9yZWdyb3VuZDogc2V0Q29sb3JCdXR0b24sIGJhY2tncm91bmQ6IFwiI2ZmZmZmZlwiIH19XG4gICAgICAgICAgICAgICAgICBvdXRsaW5lZD17dHJ1ZX1cbiAgICAgICAgICAgICAgICAgIHN0eWxlPXt7IG1hcmdpbkxlZnQ6IFwiMTBweFwiIH19XG4gICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAge2FjY2VwdFRleHR9XG4gICAgICAgICAgICAgICAgPC9CdXR0b24+XG4gICAgICAgICAgICAgICl9XG4gICAgICAgICAgICA8L0RpYWxvZ0Zvb3Rlcj5cbiAgICAgICAgICApXG4gICAgICAgICkgOiAoXG4gICAgICAgICAgPD48Lz5cbiAgICAgICAgKX1cbiAgICAgIDwvRGlhbG9nPlxuICAgICAge3Njb3BlLnN0eWxlc31cbiAgICA8L0ZyYWdtZW50PlxuICApO1xufTtcblxuZXhwb3J0IGRlZmF1bHQgTW9kYWw7XG4iXX0= */\n/*@ sourceURL=modal.tsx */")),
8943
+ className: _JSXStyle.dynamic([["3097825294", [id, setWidth && "100% !important", id, setWidth && "100% !important", setWidth, buttonAlign]]])
8943
8944
  };
8944
8945
  return React.createElement(Fragment, null, React.createElement(Dialog, {
8945
8946
  open: isOpen,
8946
- className: id,
8947
+ className: classnames(id, isConfirmationMessage ? "modal-confirmation" : ""),
8947
8948
  onClose: function onClose() {
8948
8949
  return toggleModal(false);
8949
8950
  }
8950
- }, !minimal ? React.createElement(Stack, null, modalTitle && React.createElement("div", {
8951
+ }, !minimal ? React.createElement(Stack, {
8952
+ className: isConfirmationMessage ? "confirm-modal-header" : ""
8953
+ }, modalTitle && React.createElement("div", {
8951
8954
  style: {
8952
8955
  flexGrow: 1,
8953
8956
  padding: "20px 0px 24px 24px"
8954
8957
  }
8955
- }, modalTitle), React.createElement("div", null, !noCancelButton && React.createElement(IconButton, {
8958
+ }, modalTitle), React.createElement("div", {
8959
+ className: isConfirmationMessage ? "confirm-modal-button" : ""
8960
+ }, !noCancelButton && React.createElement(IconButton, {
8956
8961
  onClick: function onClick() {
8957
8962
  return toggleModal(false);
8958
8963
  }
8959
8964
  }, React.createElement(Icon, {
8960
8965
  icon: "close"
8961
- })))) : React.createElement(React.Fragment, null), React.createElement(DialogContent, null, modalContent), !minimal ? React.createElement(DialogFooter, {
8966
+ })))) : React.createElement(React.Fragment, null), React.createElement(DialogContent, null, modalContent), !minimal ? isConfirmationMessage ? React.createElement(DialogFooter, {
8967
+ className: classnames("modal-footer ", scope.className)
8968
+ }, !noCloseButton && React.createElement(Button, {
8969
+ onClick: function onClick() {
8970
+ toggleModal(false);
8971
+ onCancel && onCancel();
8972
+ },
8973
+ className: "cancel-remove-button"
8974
+ }, cancelText), onAccept && React.createElement(Button, {
8975
+ disabled: disableAcceptButton,
8976
+ onClick: onAccept,
8977
+ outlined: true,
8978
+ style: {
8979
+ marginLeft: "20px"
8980
+ },
8981
+ className: "accept-remove-button"
8982
+ }, acceptText)) : React.createElement(DialogFooter, {
8962
8983
  className: classnames("modal-footer ", scope.className)
8963
8984
  }, !noCloseButton && React.createElement(Button, {
8964
8985
  color: {
@@ -8998,7 +9019,45 @@ Modal.propTypes = {
8998
9019
  minimal: _pt.bool,
8999
9020
  acceptText: _pt.string,
9000
9021
  cancelText: _pt.string,
9001
- disableAcceptButton: _pt.bool
9022
+ disableAcceptButton: _pt.bool,
9023
+ isConfirmationMessage: _pt.bool,
9024
+ onCancel: _pt.func
9025
+ };
9026
+
9027
+ var css$3 = ".modal-module_modal__3BPw_ {\n display: none;\n position: fixed;\n z-index: 1;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n overflow: auto;\n background-color: rgba(0, 0, 0, 0.5);\n /* Modal Content (image) */\n /* The Close Button */ }\n .modal-module_modal__3BPw_ .modal-module_modalContent__pnZ9y {\n display: flex;\n justify-content: center;\n align-items: center;\n height: calc(100% + 50px);\n animation-name: modal-module_zoom__7ZPHg;\n animation-duration: 0.6s; }\n .modal-module_modal__3BPw_ .modal-module_modalContent__pnZ9y img {\n max-width: calc(100vw - 37px);\n max-height: calc(100vh - 100px); }\n\n@keyframes modal-module_zoom__7ZPHg {\n from {\n transform: scale(0); }\n to {\n transform: scale(1); } }\n .modal-module_modal__3BPw_ .modal-module_close__1refL {\n color: white;\n font-size: 25px;\n font-weight: bold;\n transition: 0.3s;\n position: absolute;\n right: -27px;\n top: -27px; }\n .modal-module_modal__3BPw_ .modal-module_close__1refL:hover,\n .modal-module_modal__3BPw_ .modal-module_close__1refL:focus {\n color: #bbb;\n text-decoration: none;\n cursor: pointer; }\n\n/* 100% Image Width on Smaller Screens */\n@media only screen and (max-width: 700px) {\n .modal-module_modalContent__pnZ9y {\n width: 100%; } }\n";
9028
+ var cls$3 = {"modal":"modal-module_modal__3BPw_","modalContent":"modal-module_modalContent__pnZ9y","zoom":"modal-module_zoom__7ZPHg","close":"modal-module_close__1refL"};
9029
+ styleInject(css$3);
9030
+
9031
+ var ModalImage = function ModalImage(_ref) {
9032
+ var isOpen = _ref.isOpen,
9033
+ modalImageSrc = _ref.modalImageSrc,
9034
+ toggleModal = _ref.toggleModal;
9035
+ return React.createElement("div", null, isOpen && React.createElement("div", {
9036
+ className: cls$3.modal,
9037
+ style: {
9038
+ display: isOpen ? "block" : "none"
9039
+ }
9040
+ }, React.createElement("div", {
9041
+ className: cls$3.modalContent
9042
+ }, React.createElement("div", {
9043
+ style: {
9044
+ position: "relative"
9045
+ }
9046
+ }, React.createElement("img", {
9047
+ id: "img01",
9048
+ src: modalImageSrc
9049
+ }), " ", React.createElement("span", {
9050
+ className: cls$3.close,
9051
+ onClick: function onClick() {
9052
+ return toggleModal(false);
9053
+ }
9054
+ }, "\u2A02")))));
9055
+ };
9056
+
9057
+ ModalImage.propTypes = {
9058
+ isOpen: _pt.bool.isRequired,
9059
+ modalImageSrc: _pt.string.isRequired,
9060
+ toggleModal: _pt.func.isRequired
9002
9061
  };
9003
9062
 
9004
9063
  function NavigationList(_ref) {
@@ -10066,9 +10125,9 @@ Uploader.propTypes = {
10066
10125
  })
10067
10126
  };
10068
10127
 
10069
- var css$3 = ".campaign-card-module_wrapper__21wRg {\n width: 100%;\n height: 100%;\n display: flex;\n flex-direction: column;\n justify-content: space-evenly;\n align-items: center;\n padding: 20px;\n background-color: #13362e; }\n .campaign-card-module_wrapper__21wRg .campaign-card-module_image__2ZKXl {\n width: 100px;\n height: 100px;\n padding: 5px; }\n .campaign-card-module_wrapper__21wRg .campaign-card-module_title__2sx24 {\n padding: 5px;\n font-weight: 700;\n font-size: 20px;\n line-height: 27px;\n text-align: center;\n color: white; }\n .campaign-card-module_wrapper__21wRg .campaign-card-module_description__2yC7N {\n color: #b9c3c1;\n padding: 5px;\n font-weight: 500;\n font-size: 16px;\n line-height: 25.6px;\n text-align: center; }\n";
10070
- var cls$3 = {"wrapper":"campaign-card-module_wrapper__21wRg","image":"campaign-card-module_image__2ZKXl","title":"campaign-card-module_title__2sx24","description":"campaign-card-module_description__2yC7N"};
10071
- styleInject(css$3);
10128
+ var css$4 = ".campaign-card-module_wrapper__21wRg {\n width: 100%;\n height: 100%;\n display: flex;\n flex-direction: column;\n justify-content: space-evenly;\n align-items: center;\n padding: 20px;\n background-color: #13362e; }\n .campaign-card-module_wrapper__21wRg .campaign-card-module_image__2ZKXl {\n width: 100px;\n height: 100px;\n padding: 5px; }\n .campaign-card-module_wrapper__21wRg .campaign-card-module_title__2sx24 {\n padding: 5px;\n font-weight: 700;\n font-size: 20px;\n line-height: 27px;\n text-align: center;\n color: white; }\n .campaign-card-module_wrapper__21wRg .campaign-card-module_description__2yC7N {\n color: #b9c3c1;\n padding: 5px;\n font-weight: 500;\n font-size: 16px;\n line-height: 25.6px;\n text-align: center; }\n";
10129
+ var cls$4 = {"wrapper":"campaign-card-module_wrapper__21wRg","image":"campaign-card-module_image__2ZKXl","title":"campaign-card-module_title__2sx24","description":"campaign-card-module_description__2yC7N"};
10130
+ styleInject(css$4);
10072
10131
 
10073
10132
  var CampaignCard = function CampaignCard(_ref) {
10074
10133
  var _ref$className = _ref.className,
@@ -10079,14 +10138,14 @@ var CampaignCard = function CampaignCard(_ref) {
10079
10138
  _ref$description = _ref.description,
10080
10139
  description = _ref$description === void 0 ? "" : _ref$description;
10081
10140
  return React.createElement("div", {
10082
- className: classnames(cls$3.wrapper, className)
10141
+ className: classnames(cls$4.wrapper, className)
10083
10142
  }, React.createElement("img", {
10084
- className: cls$3.image,
10143
+ className: cls$4.image,
10085
10144
  src: imageURL
10086
10145
  }), React.createElement("div", {
10087
- className: cls$3.title
10146
+ className: cls$4.title
10088
10147
  }, title), React.createElement("div", {
10089
- className: cls$3.description
10148
+ className: cls$4.description
10090
10149
  }, description));
10091
10150
  };
10092
10151
 
@@ -10097,9 +10156,9 @@ CampaignCard.propTypes = {
10097
10156
  description: _pt.string
10098
10157
  };
10099
10158
 
10100
- var css$4 = ".campaign-of-month-module_wrapper__3VW1j {\n width: 100%;\n max-width: 1140px;\n height: 320px;\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n border-radius: 10px; }\n .campaign-of-month-module_wrapper__3VW1j .campaign-of-month-module_rightSide__FXQyv {\n width: 50%;\n height: 320px;\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n justify-content: space-around;\n padding: 36px 38px 43px 46px; }\n .campaign-of-month-module_wrapper__3VW1j .campaign-of-month-module_rightSide__FXQyv .campaign-of-month-module_title__2bUDz {\n font-weight: 500;\n font-size: 20px;\n line-height: 28px;\n text-align: left;\n color: black; }\n .campaign-of-month-module_wrapper__3VW1j .campaign-of-month-module_rightSide__FXQyv .campaign-of-month-module_description__6rZ2k {\n color: #6d6d6d;\n font-weight: 500;\n font-size: 15px;\n line-height: 24px;\n text-align: left;\n overflow: hidden;\n text-overflow: ellipsis;\n display: -webkit-box;\n -webkit-line-clamp: 6;\n /* number of lines to show */\n line-clamp: 6;\n -webkit-box-orient: vertical;\n margin-bottom: 25px; }\n .campaign-of-month-module_wrapper__3VW1j .campaign-of-month-module_rightSide__FXQyv .campaign-of-month-module_info__2W3vo {\n width: 100%;\n height: 52px;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between; }\n .campaign-of-month-module_wrapper__3VW1j .campaign-of-month-module_rightSide__FXQyv .campaign-of-month-module_info__2W3vo .campaign-of-month-module_item__2qUuG {\n display: flex;\n flex-direction: column;\n align-items: center; }\n .campaign-of-month-module_wrapper__3VW1j .campaign-of-month-module_rightSide__FXQyv .campaign-of-month-module_info__2W3vo .campaign-of-month-module_item_value__2UldJ {\n font-weight: 600;\n font-size: 20px;\n line-height: 28px; }\n .campaign-of-month-module_wrapper__3VW1j .campaign-of-month-module_rightSide__FXQyv .campaign-of-month-module_info__2W3vo .campaign-of-month-module_item_name__3ZCL8 {\n font-weight: 500;\n font-size: 14px;\n line-height: 22.4px;\n color: #6d6d6d; }\n .campaign-of-month-module_wrapper__3VW1j .campaign-of-month-module_leftSide__22wcl {\n width: 50%;\n height: 320px;\n border-top-right-radius: 10px;\n border-bottom-right-radius: 10px; }\n .campaign-of-month-module_wrapper__3VW1j .campaign-of-month-module_image__2YMoT {\n width: 100%;\n height: 100%;\n -o-object-fit: cover;\n object-fit: cover;\n border-bottom-left-radius: 10px;\n border-top-left-radius: 10px; }\n\n@media all and (max-width: 992px) {\n .campaign-of-month-module_wrapper__3VW1j {\n width: 719px;\n height: auto;\n flex-direction: column; }\n .campaign-of-month-module_wrapper__3VW1j .campaign-of-month-module_leftSide__22wcl {\n width: 100%;\n height: auto;\n display: flex; }\n .campaign-of-month-module_wrapper__3VW1j .campaign-of-month-module_rightSide__FXQyv {\n width: 100%;\n height: auto;\n padding: 27px 40px 36px;\n border-bottom-left-radius: 10px;\n border-bottom-right-radius: 10px; }\n .campaign-of-month-module_wrapper__3VW1j .campaign-of-month-module_rightSide__FXQyv .campaign-of-month-module_description__6rZ2k {\n -webkit-line-clamp: initial;\n /* number of lines to show */\n line-clamp: initial; }\n .campaign-of-month-module_wrapper__3VW1j .campaign-of-month-module_image__2YMoT {\n width: 100%;\n max-width: 100%;\n max-height: 100%;\n border-top-right-radius: 10px;\n border-top-left-radius: 10px;\n border-bottom-left-radius: 0px;\n -o-object-fit: cover;\n object-fit: cover; } }\n\n@media all and (max-width: 768px) {\n .campaign-of-month-module_wrapper__3VW1j {\n width: 100%;\n max-width: 432px; } }\n";
10101
- var cls$4 = {"wrapper":"campaign-of-month-module_wrapper__3VW1j","rightSide":"campaign-of-month-module_rightSide__FXQyv","title":"campaign-of-month-module_title__2bUDz","description":"campaign-of-month-module_description__6rZ2k","info":"campaign-of-month-module_info__2W3vo","item":"campaign-of-month-module_item__2qUuG","item_value":"campaign-of-month-module_item_value__2UldJ","item_name":"campaign-of-month-module_item_name__3ZCL8","leftSide":"campaign-of-month-module_leftSide__22wcl","image":"campaign-of-month-module_image__2YMoT"};
10102
- styleInject(css$4);
10159
+ var css$5 = ".campaign-of-month-module_wrapper__3VW1j {\n width: 100%;\n max-width: 1140px;\n height: 320px;\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n border-radius: 10px; }\n .campaign-of-month-module_wrapper__3VW1j .campaign-of-month-module_rightSide__FXQyv {\n width: 50%;\n height: 320px;\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n justify-content: space-around;\n padding: 36px 38px 43px 46px; }\n .campaign-of-month-module_wrapper__3VW1j .campaign-of-month-module_rightSide__FXQyv .campaign-of-month-module_title__2bUDz {\n font-weight: 500;\n font-size: 20px;\n line-height: 28px;\n text-align: left;\n color: black; }\n .campaign-of-month-module_wrapper__3VW1j .campaign-of-month-module_rightSide__FXQyv .campaign-of-month-module_description__6rZ2k {\n color: #6d6d6d;\n font-weight: 500;\n font-size: 15px;\n line-height: 24px;\n text-align: left;\n overflow: hidden;\n text-overflow: ellipsis;\n display: -webkit-box;\n -webkit-line-clamp: 6;\n /* number of lines to show */\n line-clamp: 6;\n -webkit-box-orient: vertical;\n margin-bottom: 25px; }\n .campaign-of-month-module_wrapper__3VW1j .campaign-of-month-module_rightSide__FXQyv .campaign-of-month-module_info__2W3vo {\n width: 100%;\n height: 52px;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between; }\n .campaign-of-month-module_wrapper__3VW1j .campaign-of-month-module_rightSide__FXQyv .campaign-of-month-module_info__2W3vo .campaign-of-month-module_item__2qUuG {\n display: flex;\n flex-direction: column;\n align-items: center; }\n .campaign-of-month-module_wrapper__3VW1j .campaign-of-month-module_rightSide__FXQyv .campaign-of-month-module_info__2W3vo .campaign-of-month-module_item_value__2UldJ {\n font-weight: 600;\n font-size: 20px;\n line-height: 28px; }\n .campaign-of-month-module_wrapper__3VW1j .campaign-of-month-module_rightSide__FXQyv .campaign-of-month-module_info__2W3vo .campaign-of-month-module_item_name__3ZCL8 {\n font-weight: 500;\n font-size: 14px;\n line-height: 22.4px;\n color: #6d6d6d; }\n .campaign-of-month-module_wrapper__3VW1j .campaign-of-month-module_leftSide__22wcl {\n width: 50%;\n height: 320px;\n border-top-right-radius: 10px;\n border-bottom-right-radius: 10px; }\n .campaign-of-month-module_wrapper__3VW1j .campaign-of-month-module_image__2YMoT {\n width: 100%;\n height: 100%;\n -o-object-fit: cover;\n object-fit: cover;\n border-bottom-left-radius: 10px;\n border-top-left-radius: 10px; }\n\n@media all and (max-width: 992px) {\n .campaign-of-month-module_wrapper__3VW1j {\n width: 719px;\n height: auto;\n flex-direction: column; }\n .campaign-of-month-module_wrapper__3VW1j .campaign-of-month-module_leftSide__22wcl {\n width: 100%;\n height: auto;\n display: flex; }\n .campaign-of-month-module_wrapper__3VW1j .campaign-of-month-module_rightSide__FXQyv {\n width: 100%;\n height: auto;\n padding: 27px 40px 36px;\n border-bottom-left-radius: 10px;\n border-bottom-right-radius: 10px; }\n .campaign-of-month-module_wrapper__3VW1j .campaign-of-month-module_rightSide__FXQyv .campaign-of-month-module_description__6rZ2k {\n -webkit-line-clamp: initial;\n /* number of lines to show */\n line-clamp: initial; }\n .campaign-of-month-module_wrapper__3VW1j .campaign-of-month-module_image__2YMoT {\n width: 100%;\n max-width: 100%;\n max-height: 100%;\n border-top-right-radius: 10px;\n border-top-left-radius: 10px;\n border-bottom-left-radius: 0px;\n -o-object-fit: cover;\n object-fit: cover; } }\n\n@media all and (max-width: 768px) {\n .campaign-of-month-module_wrapper__3VW1j {\n width: 100%;\n max-width: 432px; } }\n";
10160
+ var cls$5 = {"wrapper":"campaign-of-month-module_wrapper__3VW1j","rightSide":"campaign-of-month-module_rightSide__FXQyv","title":"campaign-of-month-module_title__2bUDz","description":"campaign-of-month-module_description__6rZ2k","info":"campaign-of-month-module_info__2W3vo","item":"campaign-of-month-module_item__2qUuG","item_value":"campaign-of-month-module_item_value__2UldJ","item_name":"campaign-of-month-module_item_name__3ZCL8","leftSide":"campaign-of-month-module_leftSide__22wcl","image":"campaign-of-month-module_image__2YMoT"};
10161
+ styleInject(css$5);
10103
10162
 
10104
10163
  var CampaignOfMonth = function CampaignOfMonth(_ref) {
10105
10164
  var _ref$className = _ref.className,
@@ -10123,43 +10182,43 @@ var CampaignOfMonth = function CampaignOfMonth(_ref) {
10123
10182
  idBtn = _ref.idBtn;
10124
10183
  var isShowProgressBar = rised && donation && goal;
10125
10184
  return React.createElement("div", {
10126
- className: classnames(cls$4.wrapper, className)
10185
+ className: classnames(cls$5.wrapper, className)
10127
10186
  }, React.createElement("div", {
10128
- className: cls$4.leftSide
10187
+ className: cls$5.leftSide
10129
10188
  }, React.createElement("img", {
10130
10189
  src: imageUrl,
10131
- className: cls$4.image
10190
+ className: cls$5.image
10132
10191
  })), React.createElement("div", {
10133
- className: cls$4.rightSide
10192
+ className: cls$5.rightSide
10134
10193
  }, title && React.createElement("div", {
10135
- className: cls$4.title
10194
+ className: cls$5.title
10136
10195
  }, title), React.createElement("div", {
10137
- className: cls$4.description,
10196
+ className: cls$5.description,
10138
10197
  dangerouslySetInnerHTML: {
10139
10198
  __html: text
10140
10199
  }
10141
10200
  }), isShowProgressBar ? React.createElement(React.Fragment, null, React.createElement(ProgressBar, {
10142
10201
  completed: rised / goal * 100
10143
10202
  }), React.createElement("div", {
10144
- className: cls$4.info
10203
+ className: cls$5.info
10145
10204
  }, React.createElement("div", {
10146
- className: cls$4.section
10205
+ className: cls$5.section
10147
10206
  }, React.createElement("div", {
10148
- className: cls$4.item_value
10207
+ className: cls$5.item_value
10149
10208
  }, "$", rised), React.createElement("div", {
10150
- className: cls$4.item_name
10209
+ className: cls$5.item_name
10151
10210
  }, "Raised")), React.createElement("div", {
10152
- className: cls$4.section
10211
+ className: cls$5.section
10153
10212
  }, React.createElement("div", {
10154
- className: cls$4.item_value
10213
+ className: cls$5.item_value
10155
10214
  }, "$", donation), React.createElement("div", {
10156
- className: cls$4.item_name
10215
+ className: cls$5.item_name
10157
10216
  }, "Donation")), React.createElement("div", {
10158
- className: cls$4.section
10217
+ className: cls$5.section
10159
10218
  }, React.createElement("div", {
10160
- className: cls$4.item_value
10219
+ className: cls$5.item_value
10161
10220
  }, "$", goal), React.createElement("div", {
10162
- className: cls$4.item_name
10221
+ className: cls$5.item_name
10163
10222
  }, "Goal")))) : null, React.createElement(Button, {
10164
10223
  raised: true,
10165
10224
  display: true,
@@ -10187,9 +10246,9 @@ CampaignOfMonth.propTypes = {
10187
10246
  idBtn: _pt.string
10188
10247
  };
10189
10248
 
10190
- var css$5 = ".charity-card-module_wrapper__2GNuk {\n width: 573px;\n height: 188px;\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: flex-end;\n padding: 29px 39px 38px 37px;\n background: linear-gradient(90deg, #e96a6d 0%, #e17221 100%), #2d8a75;\n border-radius: 10px; }\n .charity-card-module_wrapper__2GNuk .charity-card-module_title__3_xZV {\n font-weight: 700;\n font-size: 32px;\n line-height: 44.8px;\n text-align: left;\n color: white;\n width: 50%; }\n\n@media all and (max-width: 1200px) {\n .charity-card-module_wrapper__2GNuk {\n width: 456px;\n height: 188px;\n padding: 41px 35px 38px 39px; } }\n\n@media all and (max-width: 992px) {\n .charity-card-module_wrapper__2GNuk {\n width: 643px;\n height: 90px;\n align-items: center; }\n .charity-card-module_wrapper__2GNuk .charity-card-module_title__3_xZV {\n width: 100%;\n font-size: 26px;\n line-height: 36.4px; } }\n\n@media all and (max-width: 768px) {\n .charity-card-module_wrapper__2GNuk {\n width: 350px;\n height: 128px;\n padding: 40px 32px 38px 34px;\n align-items: flex-end; }\n .charity-card-module_wrapper__2GNuk .charity-card-module_title__3_xZV {\n width: 70%;\n font-weight: 700;\n font-size: 26px;\n line-height: 36.4px; } }\n";
10191
- var cls$5 = {"wrapper":"charity-card-module_wrapper__2GNuk","title":"charity-card-module_title__3_xZV"};
10192
- styleInject(css$5);
10249
+ var css$6 = ".charity-card-module_wrapper__2GNuk {\n width: 573px;\n height: 188px;\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: flex-end;\n padding: 29px 39px 38px 37px;\n background: linear-gradient(90deg, #e96a6d 0%, #e17221 100%), #2d8a75;\n border-radius: 10px; }\n .charity-card-module_wrapper__2GNuk .charity-card-module_title__3_xZV {\n font-weight: 700;\n font-size: 32px;\n line-height: 44.8px;\n text-align: left;\n color: white;\n width: 50%; }\n\n@media all and (max-width: 1200px) {\n .charity-card-module_wrapper__2GNuk {\n width: 456px;\n height: 188px;\n padding: 41px 35px 38px 39px; } }\n\n@media all and (max-width: 992px) {\n .charity-card-module_wrapper__2GNuk {\n width: 643px;\n height: 90px;\n align-items: center; }\n .charity-card-module_wrapper__2GNuk .charity-card-module_title__3_xZV {\n width: 100%;\n font-size: 26px;\n line-height: 36.4px; } }\n\n@media all and (max-width: 768px) {\n .charity-card-module_wrapper__2GNuk {\n width: 350px;\n height: 128px;\n padding: 40px 32px 38px 34px;\n align-items: flex-end; }\n .charity-card-module_wrapper__2GNuk .charity-card-module_title__3_xZV {\n width: 70%;\n font-weight: 700;\n font-size: 26px;\n line-height: 36.4px; } }\n";
10250
+ var cls$6 = {"wrapper":"charity-card-module_wrapper__2GNuk","title":"charity-card-module_title__3_xZV"};
10251
+ styleInject(css$6);
10193
10252
 
10194
10253
  const img$7 = "data:image/svg+xml,%3csvg width='28' height='24' viewBox='0 0 28 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M14.495 2L25 12M25 12L14.495 22M25 12H0' stroke='white' stroke-width='3'/%3e%3c/svg%3e";
10195
10254
 
@@ -10199,9 +10258,9 @@ var CharityCard = function CharityCard(_ref) {
10199
10258
  _ref$title = _ref.title,
10200
10259
  title = _ref$title === void 0 ? "" : _ref$title;
10201
10260
  return React.createElement("div", {
10202
- className: classnames(cls$5.wrapper, className)
10261
+ className: classnames(cls$6.wrapper, className)
10203
10262
  }, React.createElement("div", {
10204
- className: cls$5.title
10263
+ className: cls$6.title
10205
10264
  }, title), React.createElement("img", {
10206
10265
  src: img$7,
10207
10266
  alt: "",
@@ -10217,9 +10276,9 @@ CharityCard.propTypes = {
10217
10276
  title: _pt.string
10218
10277
  };
10219
10278
 
10220
- var css$6 = ".donate-card-module_wrapper__ciBYC {\n width: 407px;\n height: 330px;\n display: flex;\n flex-direction: column;\n justify-content: space-evenly;\n align-items: center;\n padding: 29px 37px 36px 37px;\n background-color: #f8f8f7;\n border-radius: 10px; }\n .donate-card-module_wrapper__ciBYC .donate-card-module_title__2Pvi7 {\n font-weight: 700;\n font-size: 32px;\n line-height: 44.8px;\n text-align: left;\n color: black; }\n .donate-card-module_wrapper__ciBYC .donate-card-module_description__3X5cO {\n color: #6d6d6d;\n font-weight: 500;\n font-size: 20px;\n line-height: 32px;\n text-align: left; }\n\n@media all and (max-width: 1200px) {\n .donate-card-module_wrapper__ciBYC {\n width: 456px;\n height: 330px;\n padding: 41px 42px 36px 42px; } }\n\n@media all and (max-width: 992px) {\n .donate-card-module_wrapper__ciBYC {\n width: 350px;\n height: 367px;\n padding: 36px 32px 36px 32px; } }\n\n@media all and (max-width: 768px) {\n .donate-card-module_wrapper__ciBYC {\n width: 430px;\n height: 289px;\n padding: 40px 42px 46px 42px; }\n .donate-card-module_wrapper__ciBYC .donate-card-module_title__2Pvi7 {\n font-weight: 700;\n font-size: 26px;\n line-height: 36.4px; }\n .donate-card-module_wrapper__ciBYC .donate-card-module_description__3X5cO {\n font-weight: 500;\n font-size: 16px;\n line-height: 25.6px;\n text-align: left; } }\n";
10221
- var cls$6 = {"wrapper":"donate-card-module_wrapper__ciBYC","title":"donate-card-module_title__2Pvi7","description":"donate-card-module_description__3X5cO"};
10222
- styleInject(css$6);
10279
+ var css$7 = ".donate-card-module_wrapper__ciBYC {\n width: 407px;\n height: 330px;\n display: flex;\n flex-direction: column;\n justify-content: space-evenly;\n align-items: center;\n padding: 29px 37px 36px 37px;\n background-color: #f8f8f7;\n border-radius: 10px; }\n .donate-card-module_wrapper__ciBYC .donate-card-module_title__2Pvi7 {\n font-weight: 700;\n font-size: 32px;\n line-height: 44.8px;\n text-align: left;\n color: black; }\n .donate-card-module_wrapper__ciBYC .donate-card-module_description__3X5cO {\n color: #6d6d6d;\n font-weight: 500;\n font-size: 20px;\n line-height: 32px;\n text-align: left; }\n\n@media all and (max-width: 1200px) {\n .donate-card-module_wrapper__ciBYC {\n width: 456px;\n height: 330px;\n padding: 41px 42px 36px 42px; } }\n\n@media all and (max-width: 992px) {\n .donate-card-module_wrapper__ciBYC {\n width: 350px;\n height: 367px;\n padding: 36px 32px 36px 32px; } }\n\n@media all and (max-width: 768px) {\n .donate-card-module_wrapper__ciBYC {\n width: 430px;\n height: 289px;\n padding: 40px 42px 46px 42px; }\n .donate-card-module_wrapper__ciBYC .donate-card-module_title__2Pvi7 {\n font-weight: 700;\n font-size: 26px;\n line-height: 36.4px; }\n .donate-card-module_wrapper__ciBYC .donate-card-module_description__3X5cO {\n font-weight: 500;\n font-size: 16px;\n line-height: 25.6px;\n text-align: left; } }\n";
10280
+ var cls$7 = {"wrapper":"donate-card-module_wrapper__ciBYC","title":"donate-card-module_title__2Pvi7","description":"donate-card-module_description__3X5cO"};
10281
+ styleInject(css$7);
10223
10282
 
10224
10283
  var DonateCard = function DonateCard(_ref) {
10225
10284
  var _ref$className = _ref.className,
@@ -10229,11 +10288,11 @@ var DonateCard = function DonateCard(_ref) {
10229
10288
  _ref$description = _ref.description,
10230
10289
  description = _ref$description === void 0 ? "" : _ref$description;
10231
10290
  return React.createElement("div", {
10232
- className: classnames(cls$6.wrapper, className)
10291
+ className: classnames(cls$7.wrapper, className)
10233
10292
  }, React.createElement("div", {
10234
- className: cls$6.title
10293
+ className: cls$7.title
10235
10294
  }, title), React.createElement("div", {
10236
- className: cls$6.description
10295
+ className: cls$7.description
10237
10296
  }, description), React.createElement(Button, {
10238
10297
  raised: true,
10239
10298
  display: true,
@@ -10249,9 +10308,9 @@ DonateCard.propTypes = {
10249
10308
  description: _pt.string
10250
10309
  };
10251
10310
 
10252
- var css$7 = ".featured-campaign-card-module_wrapper__Lx4z3 {\n width: 100%;\n height: 100%;\n display: flex;\n flex-direction: column;\n justify-content: space-evenly;\n align-items: center;\n cursor: pointer; }\n .featured-campaign-card-module_wrapper__Lx4z3 .featured-campaign-card-module_imageWrapper__1Znnd {\n height: 100%;\n display: flex;\n align-items: center; }\n .featured-campaign-card-module_wrapper__Lx4z3 .featured-campaign-card-module_coverImage__HUvxd {\n border-radius: 8px;\n width: -webkit-fit-content;\n width: fit-content; }\n .featured-campaign-card-module_wrapper__Lx4z3 .featured-campaign-card-module_image__ZtL5s {\n width: 100%;\n border-radius: 8px; }\n .featured-campaign-card-module_wrapper__Lx4z3 .featured-campaign-card-module_title__3rmNH {\n width: 100%;\n padding-top: 5px;\n padding-bottom: 10px;\n font-weight: 700;\n font-size: 15px;\n line-height: 21px;\n text-align: left;\n color: black;\n height: 50px;\n overflow: hidden;\n display: -webkit-box;\n -webkit-line-clamp: 2;\n -webkit-box-orient: vertical; }\n .featured-campaign-card-module_wrapper__Lx4z3 .featured-campaign-card-module_description__NZDGW {\n display: flex;\n flex-direction: row;\n align-items: center;\n width: 100%;\n color: black;\n padding-top: 5px;\n padding-bottom: 5px;\n font-weight: 700;\n font-size: 13px;\n line-height: 18.2px;\n text-align: left;\n border-radius: 10px;\n grid-gap: 20px;\n grid-gap: 20px;\n gap: 20px; }\n .featured-campaign-card-module_wrapper__Lx4z3 .featured-campaign-card-module_subtext__2eSW5 {\n width: 100%;\n color: #6d6d6d;\n padding-top: 5px;\n padding-bottom: 5px;\n font-weight: 500;\n font-size: 13px;\n line-height: 18.2px;\n text-align: left;\n margin-left: 3px;\n margin-right: 3px; }\n .featured-campaign-card-module_wrapper__Lx4z3 .featured-campaign-card-module_FRPText__1QVdV {\n overflow: hidden;\n display: -webkit-box;\n -webkit-line-clamp: 2;\n -webkit-box-orient: vertical;\n color: #6d6d6d;\n line-height: 20px;\n font-size: 15px;\n margin: 0 0 10px 0; }\n";
10253
- var cls$7 = {"wrapper":"featured-campaign-card-module_wrapper__Lx4z3","imageWrapper":"featured-campaign-card-module_imageWrapper__1Znnd","coverImage":"featured-campaign-card-module_coverImage__HUvxd","image":"featured-campaign-card-module_image__ZtL5s","title":"featured-campaign-card-module_title__3rmNH","description":"featured-campaign-card-module_description__NZDGW","subtext":"featured-campaign-card-module_subtext__2eSW5","FRPText":"featured-campaign-card-module_FRPText__1QVdV"};
10254
- styleInject(css$7);
10311
+ var css$8 = ".featured-campaign-card-module_wrapper__Lx4z3 {\n width: 100%;\n height: 100%;\n display: flex;\n flex-direction: column;\n justify-content: space-evenly;\n align-items: center;\n cursor: pointer; }\n .featured-campaign-card-module_wrapper__Lx4z3 .featured-campaign-card-module_imageWrapper__1Znnd {\n height: 100%;\n display: flex;\n align-items: center; }\n .featured-campaign-card-module_wrapper__Lx4z3 .featured-campaign-card-module_coverImage__HUvxd {\n border-radius: 8px;\n width: -webkit-fit-content;\n width: fit-content; }\n .featured-campaign-card-module_wrapper__Lx4z3 .featured-campaign-card-module_image__ZtL5s {\n width: 100%;\n border-radius: 8px; }\n .featured-campaign-card-module_wrapper__Lx4z3 .featured-campaign-card-module_title__3rmNH {\n width: 100%;\n padding-top: 5px;\n padding-bottom: 10px;\n font-weight: 700;\n font-size: 15px;\n line-height: 21px;\n text-align: left;\n color: black;\n height: 50px;\n overflow: hidden;\n display: -webkit-box;\n -webkit-line-clamp: 2;\n -webkit-box-orient: vertical; }\n .featured-campaign-card-module_wrapper__Lx4z3 .featured-campaign-card-module_description__NZDGW {\n display: flex;\n flex-direction: row;\n align-items: center;\n width: 100%;\n color: black;\n padding-top: 5px;\n padding-bottom: 5px;\n font-weight: 700;\n font-size: 13px;\n line-height: 18.2px;\n text-align: left;\n border-radius: 10px;\n grid-gap: 20px;\n grid-gap: 20px;\n gap: 20px; }\n .featured-campaign-card-module_wrapper__Lx4z3 .featured-campaign-card-module_subtext__2eSW5 {\n width: 100%;\n color: #6d6d6d;\n padding-top: 5px;\n padding-bottom: 5px;\n font-weight: 500;\n font-size: 13px;\n line-height: 18.2px;\n text-align: left;\n margin-left: 3px;\n margin-right: 3px; }\n .featured-campaign-card-module_wrapper__Lx4z3 .featured-campaign-card-module_FRPText__1QVdV {\n overflow: hidden;\n display: -webkit-box;\n -webkit-line-clamp: 2;\n -webkit-box-orient: vertical;\n color: #6d6d6d;\n line-height: 20px;\n font-size: 15px;\n margin: 0 0 10px 0; }\n";
10312
+ var cls$8 = {"wrapper":"featured-campaign-card-module_wrapper__Lx4z3","imageWrapper":"featured-campaign-card-module_imageWrapper__1Znnd","coverImage":"featured-campaign-card-module_coverImage__HUvxd","image":"featured-campaign-card-module_image__ZtL5s","title":"featured-campaign-card-module_title__3rmNH","description":"featured-campaign-card-module_description__NZDGW","subtext":"featured-campaign-card-module_subtext__2eSW5","FRPText":"featured-campaign-card-module_FRPText__1QVdV"};
10313
+ styleInject(css$8);
10255
10314
 
10256
10315
  var FeaturedCampaignCard = function FeaturedCampaignCard(_ref) {
10257
10316
  var _ref$className = _ref.className,
@@ -10273,32 +10332,32 @@ var FeaturedCampaignCard = function FeaturedCampaignCard(_ref) {
10273
10332
  fundraisingText = _ref.fundraisingText,
10274
10333
  handleImageError = _ref.handleImageError;
10275
10334
  return React.createElement("div", {
10276
- className: classnames(cls$7.wrapper, className),
10335
+ className: classnames(cls$8.wrapper, className),
10277
10336
  style: {
10278
10337
  maxWidth: "".concat(maxWidth, "px")
10279
10338
  },
10280
10339
  onClick: onClick
10281
10340
  }, React.createElement("div", null, React.createElement("div", {
10282
- className: cls$7.coverImage
10341
+ className: cls$8.coverImage
10283
10342
  }, React.createElement("img", {
10284
- className: cls$7.image,
10343
+ className: cls$8.image,
10285
10344
  src: imageURL,
10286
10345
  onError: handleImageError
10287
10346
  })), React.createElement("div", {
10288
- className: cls$7.title
10347
+ className: cls$8.title
10289
10348
  }, title), React.createElement("p", {
10290
- className: cls$7.FRPText,
10349
+ className: cls$8.FRPText,
10291
10350
  dangerouslySetInnerHTML: {
10292
10351
  __html: fundraisingText
10293
10352
  }
10294
10353
  })), React.createElement(ProgressBar, {
10295
10354
  completed: completed
10296
10355
  }), React.createElement("div", {
10297
- className: cls$7.description
10356
+ className: cls$8.description
10298
10357
  }, React.createElement("div", null, donation, " donations"), React.createElement("div", null, "$", raised, " ", React.createElement("span", {
10299
- className: cls$7.subtext
10358
+ className: cls$8.subtext
10300
10359
  }, "Raised of"), "$", goal, React.createElement("span", {
10301
- className: cls$7.subtext
10360
+ className: cls$8.subtext
10302
10361
  }, "Goal"))));
10303
10362
  };
10304
10363
 
@@ -10317,9 +10376,9 @@ FeaturedCampaignCard.propTypes = {
10317
10376
  handleImageError: _pt.func
10318
10377
  };
10319
10378
 
10320
- var css$8 = ".fundraising-section-module_wrapper__2vajR {\n width: 100%;\n height: auto;\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n border-radius: 10px;\n padding-right: 90px;\n padding-left: 90px; }\n .fundraising-section-module_wrapper__2vajR .fundraising-section-module_leftSide__1zI_4 {\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n width: 50%;\n height: auto;\n padding-right: 36px; }\n .fundraising-section-module_wrapper__2vajR .fundraising-section-module_image__1G7d9 {\n max-width: 100%;\n max-height: 100%;\n border-radius: 10px; }\n .fundraising-section-module_wrapper__2vajR .fundraising-section-module_rightSide__3XxNu {\n width: 50%;\n height: auto;\n padding-left: 36px;\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n justify-content: center; }\n .fundraising-section-module_wrapper__2vajR .fundraising-section-module_rightSide__3XxNu .fundraising-section-module_title__3qv_k {\n font-weight: 500;\n font-size: 24px;\n line-height: 32.4px;\n text-align: left;\n color: black;\n margin-bottom: 12.64px; }\n .fundraising-section-module_wrapper__2vajR .fundraising-section-module_rightSide__3XxNu .fundraising-section-module_description__1kteS {\n color: #6d6d6d;\n font-weight: 500;\n font-size: 20px;\n line-height: 32px;\n text-align: left; }\n";
10321
- var cls$8 = {"wrapper":"fundraising-section-module_wrapper__2vajR","leftSide":"fundraising-section-module_leftSide__1zI_4","image":"fundraising-section-module_image__1G7d9","rightSide":"fundraising-section-module_rightSide__3XxNu","title":"fundraising-section-module_title__3qv_k","description":"fundraising-section-module_description__1kteS"};
10322
- styleInject(css$8);
10379
+ var css$9 = ".fundraising-section-module_wrapper__2vajR {\n width: 100%;\n height: auto;\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n border-radius: 10px;\n padding-right: 90px;\n padding-left: 90px; }\n .fundraising-section-module_wrapper__2vajR .fundraising-section-module_leftSide__1zI_4 {\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n width: 50%;\n height: auto;\n padding-right: 36px; }\n .fundraising-section-module_wrapper__2vajR .fundraising-section-module_image__1G7d9 {\n max-width: 100%;\n max-height: 100%;\n border-radius: 10px; }\n .fundraising-section-module_wrapper__2vajR .fundraising-section-module_rightSide__3XxNu {\n width: 50%;\n height: auto;\n padding-left: 36px;\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n justify-content: center; }\n .fundraising-section-module_wrapper__2vajR .fundraising-section-module_rightSide__3XxNu .fundraising-section-module_title__3qv_k {\n font-weight: 500;\n font-size: 24px;\n line-height: 32.4px;\n text-align: left;\n color: black;\n margin-bottom: 12.64px; }\n .fundraising-section-module_wrapper__2vajR .fundraising-section-module_rightSide__3XxNu .fundraising-section-module_description__1kteS {\n color: #6d6d6d;\n font-weight: 500;\n font-size: 20px;\n line-height: 32px;\n text-align: left; }\n";
10380
+ var cls$9 = {"wrapper":"fundraising-section-module_wrapper__2vajR","leftSide":"fundraising-section-module_leftSide__1zI_4","image":"fundraising-section-module_image__1G7d9","rightSide":"fundraising-section-module_rightSide__3XxNu","title":"fundraising-section-module_title__3qv_k","description":"fundraising-section-module_description__1kteS"};
10381
+ styleInject(css$9);
10323
10382
 
10324
10383
  var FundraisingSection = function FundraisingSection(_ref) {
10325
10384
  var _ref$className = _ref.className,
@@ -10331,18 +10390,18 @@ var FundraisingSection = function FundraisingSection(_ref) {
10331
10390
  _ref$imageUrl = _ref.imageUrl,
10332
10391
  imageUrl = _ref$imageUrl === void 0 ? "" : _ref$imageUrl;
10333
10392
  return React.createElement("div", {
10334
- className: classnames(cls$8.wrapper, className)
10393
+ className: classnames(cls$9.wrapper, className)
10335
10394
  }, React.createElement("div", {
10336
- className: cls$8.leftSide
10395
+ className: cls$9.leftSide
10337
10396
  }, React.createElement("img", {
10338
10397
  src: imageUrl,
10339
- className: cls$8.image
10398
+ className: cls$9.image
10340
10399
  })), React.createElement("div", {
10341
- className: cls$8.rightSide
10400
+ className: cls$9.rightSide
10342
10401
  }, React.createElement("div", {
10343
- className: cls$8.title
10402
+ className: cls$9.title
10344
10403
  }, title), React.createElement("div", {
10345
- className: cls$8.description
10404
+ className: cls$9.description
10346
10405
  }, description)));
10347
10406
  };
10348
10407
 
@@ -10353,9 +10412,9 @@ FundraisingSection.propTypes = {
10353
10412
  imageUrl: _pt.string
10354
10413
  };
10355
10414
 
10356
- var css$9 = ".hero-banner-module_wrapper__3tqb0 {\n width: 100%;\n height: 509.07px;\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n background-color: #13362e;\n border-bottom-right-radius: 10px; }\n .hero-banner-module_wrapper__3tqb0 .hero-banner-module_rightSide__2v-ZN {\n width: 35%;\n height: 100%;\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n justify-content: center;\n padding: 29px 0px 36px 41px; }\n .hero-banner-module_wrapper__3tqb0 .hero-banner-module_rightSide__2v-ZN .hero-banner-module_title__3W1MB {\n font-weight: 700;\n font-size: 40px;\n line-height: 56px;\n text-align: left;\n color: white; }\n .hero-banner-module_wrapper__3tqb0 .hero-banner-module_rightSide__2v-ZN .hero-banner-module_description__t3Jsm {\n color: white;\n font-weight: 500;\n font-size: 32px;\n line-height: 44.8px;\n text-align: left;\n padding-top: 20px;\n padding-bottom: 30px; }\n .hero-banner-module_wrapper__3tqb0 .hero-banner-module_leftSide__2wEYK {\n width: 65%;\n height: 100%;\n border-bottom-right-radius: 10px; }\n .hero-banner-module_wrapper__3tqb0 .hero-banner-module_image__jUz8f {\n border-bottom-right-radius: 10px;\n height: 100%;\n width: 100%;\n -o-object-fit: cover;\n object-fit: cover;\n mask-image: linear-gradient(to left, #2d8a75 0%, #2d8a75 50%, rgba(0, 0, 0, 0) 100%);\n -webkit-mask-image: linear-gradient(to left, #2d8a75 50%, #2d8a75 5%, rgba(0, 0, 0, 0) 100%); }\n";
10357
- var cls$9 = {"wrapper":"hero-banner-module_wrapper__3tqb0","rightSide":"hero-banner-module_rightSide__2v-ZN","title":"hero-banner-module_title__3W1MB","description":"hero-banner-module_description__t3Jsm","leftSide":"hero-banner-module_leftSide__2wEYK","image":"hero-banner-module_image__jUz8f"};
10358
- styleInject(css$9);
10415
+ var css$a = ".hero-banner-module_wrapper__3tqb0 {\n width: 100%;\n height: 509.07px;\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n background-color: #13362e;\n border-bottom-right-radius: 10px; }\n .hero-banner-module_wrapper__3tqb0 .hero-banner-module_rightSide__2v-ZN {\n width: 35%;\n height: 100%;\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n justify-content: center;\n padding: 29px 0px 36px 41px; }\n .hero-banner-module_wrapper__3tqb0 .hero-banner-module_rightSide__2v-ZN .hero-banner-module_title__3W1MB {\n font-weight: 700;\n font-size: 40px;\n line-height: 56px;\n text-align: left;\n color: white; }\n .hero-banner-module_wrapper__3tqb0 .hero-banner-module_rightSide__2v-ZN .hero-banner-module_description__t3Jsm {\n color: white;\n font-weight: 500;\n font-size: 32px;\n line-height: 44.8px;\n text-align: left;\n padding-top: 20px;\n padding-bottom: 30px; }\n .hero-banner-module_wrapper__3tqb0 .hero-banner-module_leftSide__2wEYK {\n width: 65%;\n height: 100%;\n border-bottom-right-radius: 10px; }\n .hero-banner-module_wrapper__3tqb0 .hero-banner-module_image__jUz8f {\n border-bottom-right-radius: 10px;\n height: 100%;\n width: 100%;\n -o-object-fit: cover;\n object-fit: cover;\n mask-image: linear-gradient(to left, #2d8a75 0%, #2d8a75 50%, rgba(0, 0, 0, 0) 100%);\n -webkit-mask-image: linear-gradient(to left, #2d8a75 50%, #2d8a75 5%, rgba(0, 0, 0, 0) 100%); }\n";
10416
+ var cls$a = {"wrapper":"hero-banner-module_wrapper__3tqb0","rightSide":"hero-banner-module_rightSide__2v-ZN","title":"hero-banner-module_title__3W1MB","description":"hero-banner-module_description__t3Jsm","leftSide":"hero-banner-module_leftSide__2wEYK","image":"hero-banner-module_image__jUz8f"};
10417
+ styleInject(css$a);
10359
10418
 
10360
10419
  var HeroBnner = function HeroBnner(_ref) {
10361
10420
  var _ref$className = _ref.className,
@@ -10367,13 +10426,13 @@ var HeroBnner = function HeroBnner(_ref) {
10367
10426
  _ref$imageUrl = _ref.imageUrl,
10368
10427
  imageUrl = _ref$imageUrl === void 0 ? "" : _ref$imageUrl;
10369
10428
  return React.createElement("div", {
10370
- className: classnames(cls$9.wrapper, className)
10429
+ className: classnames(cls$a.wrapper, className)
10371
10430
  }, React.createElement("div", {
10372
- className: cls$9.rightSide
10431
+ className: cls$a.rightSide
10373
10432
  }, React.createElement("div", {
10374
- className: cls$9.title
10433
+ className: cls$a.title
10375
10434
  }, title), React.createElement("div", {
10376
- className: cls$9.description
10435
+ className: cls$a.description
10377
10436
  }, description), React.createElement(Button, {
10378
10437
  raised: true,
10379
10438
  display: true,
@@ -10382,10 +10441,10 @@ var HeroBnner = function HeroBnner(_ref) {
10382
10441
  height: "48px"
10383
10442
  }
10384
10443
  }, "Start fundraising")), React.createElement("div", {
10385
- className: cls$9.leftSide
10444
+ className: cls$a.leftSide
10386
10445
  }, React.createElement("img", {
10387
10446
  src: imageUrl,
10388
- className: cls$9.image,
10447
+ className: cls$a.image,
10389
10448
  alt: ""
10390
10449
  })));
10391
10450
  };
@@ -10397,9 +10456,9 @@ HeroBnner.propTypes = {
10397
10456
  imageUrl: _pt.string
10398
10457
  };
10399
10458
 
10400
- var css$a = ".horizontalbar-module_wrapper__39Ym4 {\n width: 100%;\n height: 100%;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: flex-start;\n margin: 5px; }\n .horizontalbar-module_wrapper__39Ym4 .horizontalbar-module_bar__1X0jE {\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: flex-end;\n background-color: #41ccad;\n border-radius: 999px;\n height: 50px; }\n .horizontalbar-module_wrapper__39Ym4 .horizontalbar-module_dot__1uJv_ {\n background-color: #2d8a75;\n display: flex;\n width: 20px;\n height: 20px;\n border-radius: 999px;\n margin-right: 17.5px; }\n";
10401
- var cls$a = {"wrapper":"horizontalbar-module_wrapper__39Ym4","bar":"horizontalbar-module_bar__1X0jE","dot":"horizontalbar-module_dot__1uJv_"};
10402
- styleInject(css$a);
10459
+ var css$b = ".horizontalbar-module_wrapper__39Ym4 {\n width: 100%;\n height: 100%;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: flex-start;\n margin: 5px; }\n .horizontalbar-module_wrapper__39Ym4 .horizontalbar-module_bar__1X0jE {\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: flex-end;\n background-color: #41ccad;\n border-radius: 999px;\n height: 50px; }\n .horizontalbar-module_wrapper__39Ym4 .horizontalbar-module_dot__1uJv_ {\n background-color: #2d8a75;\n display: flex;\n width: 20px;\n height: 20px;\n border-radius: 999px;\n margin-right: 17.5px; }\n";
10460
+ var cls$b = {"wrapper":"horizontalbar-module_wrapper__39Ym4","bar":"horizontalbar-module_bar__1X0jE","dot":"horizontalbar-module_dot__1uJv_"};
10461
+ styleInject(css$b);
10403
10462
 
10404
10463
  var HorizontalBar = function HorizontalBar(_ref) {
10405
10464
  var _ref$className = _ref.className,
@@ -10415,9 +10474,9 @@ var HorizontalBar = function HorizontalBar(_ref) {
10415
10474
  _ref$marginLeft = _ref.marginLeft,
10416
10475
  marginLeft = _ref$marginLeft === void 0 ? 0 : _ref$marginLeft;
10417
10476
  return React.createElement("div", {
10418
- className: classnames(cls$a.wrapper, className)
10477
+ className: classnames(cls$b.wrapper, className)
10419
10478
  }, React.createElement("div", {
10420
- className: cls$a.bar,
10479
+ className: cls$b.bar,
10421
10480
  style: {
10422
10481
  width: "".concat(width, "px"),
10423
10482
  height: "".concat(height, "px"),
@@ -10425,7 +10484,7 @@ var HorizontalBar = function HorizontalBar(_ref) {
10425
10484
  marginLeft: "".concat(marginLeft, "px")
10426
10485
  }
10427
10486
  }, React.createElement("span", {
10428
- className: cls$a.dot,
10487
+ className: cls$b.dot,
10429
10488
  style: {
10430
10489
  backgroundColor: "".concat(dotColor)
10431
10490
  }
@@ -10441,9 +10500,9 @@ HorizontalBar.propTypes = {
10441
10500
  marginLeft: _pt.number
10442
10501
  };
10443
10502
 
10444
- var css$b = ".start-campaign-card-module_wrapper__26J9X {\n width: 708px;\n height: 330px;\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n border-radius: 10px;\n background-color: #2d8a75; }\n .start-campaign-card-module_wrapper__26J9X .start-campaign-card-module_rightSide__2cTpp {\n width: 326px;\n height: 330px;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: space-around;\n padding: 29px 0px 36px 41px; }\n .start-campaign-card-module_wrapper__26J9X .start-campaign-card-module_rightSide__2cTpp .start-campaign-card-module_title__3S0AN {\n font-weight: 700;\n font-size: 32px;\n line-height: 44.8px;\n text-align: left;\n color: white; }\n .start-campaign-card-module_wrapper__26J9X .start-campaign-card-module_rightSide__2cTpp .start-campaign-card-module_description__2QHtW {\n color: white;\n font-weight: 500;\n font-size: 20px;\n line-height: 32px;\n text-align: left; }\n .start-campaign-card-module_wrapper__26J9X .start-campaign-card-module_leftSide__3yqbZ {\n width: 382px;\n height: 330px;\n border-top-right-radius: 10px;\n border-bottom-right-radius: 10px;\n background: linear-gradient(to right, #2d8a75 0%, #2d8a75 15%, rgba(0, 0, 0, 0) 50%), url(./test-image.svg) no-repeat;\n background-size: cover; }\n\n@media all and (max-width: 1200px) {\n .start-campaign-card-module_wrapper__26J9X {\n width: 456px;\n height: 330px;\n padding: 42px 42px 36px 42px; }\n .start-campaign-card-module_wrapper__26J9X .start-campaign-card-module_leftSide__3yqbZ {\n display: none; }\n .start-campaign-card-module_wrapper__26J9X .start-campaign-card-module_rightSide__2cTpp {\n width: 100%;\n height: 100%;\n padding: 0; } }\n\n@media all and (max-width: 992px) {\n .start-campaign-card-module_wrapper__26J9X {\n width: 350px;\n height: 367px;\n padding: 36px 33px 36px 33px; }\n .start-campaign-card-module_wrapper__26J9X .start-campaign-card-module_leftSide__3yqbZ {\n display: none; }\n .start-campaign-card-module_wrapper__26J9X .start-campaign-card-module_rightSide__2cTpp {\n width: 100%;\n height: 100%;\n padding: 0; } }\n\n@media all and (max-width: 768px) {\n .start-campaign-card-module_wrapper__26J9X {\n width: 430px;\n height: 525px;\n display: flex;\n flex-direction: column-reverse;\n justify-content: space-between;\n align-items: center;\n padding: 0; }\n .start-campaign-card-module_wrapper__26J9X .start-campaign-card-module_leftSide__3yqbZ {\n display: block;\n width: 430px;\n height: 330px;\n border-top-right-radius: 10px;\n border-top-left-radius: 10px;\n background: linear-gradient(to top, #2d8a75 0%, #2d8a75 15%, rgba(0, 0, 0, 0) 50%), url(./test-image.svg) no-repeat;\n background-size: cover; }\n .start-campaign-card-module_wrapper__26J9X .start-campaign-card-module_rightSide__2cTpp {\n width: 430;\n height: 195px;\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n justify-content: space-around;\n padding: 0px 42px 51px 42px; }\n .start-campaign-card-module_wrapper__26J9X .start-campaign-card-module_rightSide__2cTpp .start-campaign-card-module_title__3S0AN {\n font-weight: 700;\n font-size: 26px;\n line-height: 36.4px;\n text-align: left;\n color: white; }\n .start-campaign-card-module_wrapper__26J9X .start-campaign-card-module_rightSide__2cTpp .start-campaign-card-module_description__2QHtW {\n color: white;\n font-weight: 500;\n font-size: 16px;\n line-height: 25.6px;\n text-align: left; } }\n";
10445
- var cls$b = {"wrapper":"start-campaign-card-module_wrapper__26J9X","rightSide":"start-campaign-card-module_rightSide__2cTpp","title":"start-campaign-card-module_title__3S0AN","description":"start-campaign-card-module_description__2QHtW","leftSide":"start-campaign-card-module_leftSide__3yqbZ"};
10446
- styleInject(css$b);
10503
+ var css$c = ".start-campaign-card-module_wrapper__26J9X {\n width: 708px;\n height: 330px;\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n border-radius: 10px;\n background-color: #2d8a75; }\n .start-campaign-card-module_wrapper__26J9X .start-campaign-card-module_rightSide__2cTpp {\n width: 326px;\n height: 330px;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: space-around;\n padding: 29px 0px 36px 41px; }\n .start-campaign-card-module_wrapper__26J9X .start-campaign-card-module_rightSide__2cTpp .start-campaign-card-module_title__3S0AN {\n font-weight: 700;\n font-size: 32px;\n line-height: 44.8px;\n text-align: left;\n color: white; }\n .start-campaign-card-module_wrapper__26J9X .start-campaign-card-module_rightSide__2cTpp .start-campaign-card-module_description__2QHtW {\n color: white;\n font-weight: 500;\n font-size: 20px;\n line-height: 32px;\n text-align: left; }\n .start-campaign-card-module_wrapper__26J9X .start-campaign-card-module_leftSide__3yqbZ {\n width: 382px;\n height: 330px;\n border-top-right-radius: 10px;\n border-bottom-right-radius: 10px;\n background: linear-gradient(to right, #2d8a75 0%, #2d8a75 15%, rgba(0, 0, 0, 0) 50%), url(./test-image.svg) no-repeat;\n background-size: cover; }\n\n@media all and (max-width: 1200px) {\n .start-campaign-card-module_wrapper__26J9X {\n width: 456px;\n height: 330px;\n padding: 42px 42px 36px 42px; }\n .start-campaign-card-module_wrapper__26J9X .start-campaign-card-module_leftSide__3yqbZ {\n display: none; }\n .start-campaign-card-module_wrapper__26J9X .start-campaign-card-module_rightSide__2cTpp {\n width: 100%;\n height: 100%;\n padding: 0; } }\n\n@media all and (max-width: 992px) {\n .start-campaign-card-module_wrapper__26J9X {\n width: 350px;\n height: 367px;\n padding: 36px 33px 36px 33px; }\n .start-campaign-card-module_wrapper__26J9X .start-campaign-card-module_leftSide__3yqbZ {\n display: none; }\n .start-campaign-card-module_wrapper__26J9X .start-campaign-card-module_rightSide__2cTpp {\n width: 100%;\n height: 100%;\n padding: 0; } }\n\n@media all and (max-width: 768px) {\n .start-campaign-card-module_wrapper__26J9X {\n width: 430px;\n height: 525px;\n display: flex;\n flex-direction: column-reverse;\n justify-content: space-between;\n align-items: center;\n padding: 0; }\n .start-campaign-card-module_wrapper__26J9X .start-campaign-card-module_leftSide__3yqbZ {\n display: block;\n width: 430px;\n height: 330px;\n border-top-right-radius: 10px;\n border-top-left-radius: 10px;\n background: linear-gradient(to top, #2d8a75 0%, #2d8a75 15%, rgba(0, 0, 0, 0) 50%), url(./test-image.svg) no-repeat;\n background-size: cover; }\n .start-campaign-card-module_wrapper__26J9X .start-campaign-card-module_rightSide__2cTpp {\n width: 430;\n height: 195px;\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n justify-content: space-around;\n padding: 0px 42px 51px 42px; }\n .start-campaign-card-module_wrapper__26J9X .start-campaign-card-module_rightSide__2cTpp .start-campaign-card-module_title__3S0AN {\n font-weight: 700;\n font-size: 26px;\n line-height: 36.4px;\n text-align: left;\n color: white; }\n .start-campaign-card-module_wrapper__26J9X .start-campaign-card-module_rightSide__2cTpp .start-campaign-card-module_description__2QHtW {\n color: white;\n font-weight: 500;\n font-size: 16px;\n line-height: 25.6px;\n text-align: left; } }\n";
10504
+ var cls$c = {"wrapper":"start-campaign-card-module_wrapper__26J9X","rightSide":"start-campaign-card-module_rightSide__2cTpp","title":"start-campaign-card-module_title__3S0AN","description":"start-campaign-card-module_description__2QHtW","leftSide":"start-campaign-card-module_leftSide__3yqbZ"};
10505
+ styleInject(css$c);
10447
10506
 
10448
10507
  var StartCampaignCard = function StartCampaignCard(_ref) {
10449
10508
  var _ref$className = _ref.className,
@@ -10453,13 +10512,13 @@ var StartCampaignCard = function StartCampaignCard(_ref) {
10453
10512
  _ref$description = _ref.description,
10454
10513
  description = _ref$description === void 0 ? "" : _ref$description;
10455
10514
  return React.createElement("div", {
10456
- className: classnames(cls$b.wrapper, className)
10515
+ className: classnames(cls$c.wrapper, className)
10457
10516
  }, React.createElement("div", {
10458
- className: cls$b.rightSide
10517
+ className: cls$c.rightSide
10459
10518
  }, React.createElement("div", {
10460
- className: cls$b.title
10519
+ className: cls$c.title
10461
10520
  }, title), React.createElement("div", {
10462
- className: cls$b.description
10521
+ className: cls$c.description
10463
10522
  }, description), React.createElement(Button, {
10464
10523
  raised: true,
10465
10524
  display: true,
@@ -10470,7 +10529,7 @@ var StartCampaignCard = function StartCampaignCard(_ref) {
10470
10529
  height: "50px"
10471
10530
  }
10472
10531
  }, "Start a campaign")), React.createElement("div", {
10473
- className: cls$b.leftSide
10532
+ className: cls$c.leftSide
10474
10533
  }));
10475
10534
  };
10476
10535
 
@@ -11313,9 +11372,9 @@ function useHover$1() {
11313
11372
  return [isHovered, bind];
11314
11373
  }
11315
11374
 
11316
- var css$c = ".nav-module_tabBar__1jJhu {\n height: 75px; }\n .nav-module_tabBar__1jJhu .mdc-tab-scroller .mdc-tab {\n height: 75px !important; }\n .nav-module_tabBar__1jJhu .mdc-tab-scroller .mdc-tab .mdc-tab__content .mdc-tab__text-label {\n font-size: 15px !important;\n font-weight: 500; }\n";
11317
- var cls$c = {"tabBar":"nav-module_tabBar__1jJhu"};
11318
- styleInject(css$c);
11375
+ var css$d = ".nav-module_tabBar__1jJhu {\n height: 75px; }\n .nav-module_tabBar__1jJhu .mdc-tab-scroller .mdc-tab {\n height: 75px !important; }\n .nav-module_tabBar__1jJhu .mdc-tab-scroller .mdc-tab .mdc-tab__content .mdc-tab__text-label {\n font-size: 15px !important;\n font-weight: 500; }\n";
11376
+ var cls$d = {"tabBar":"nav-module_tabBar__1jJhu"};
11377
+ styleInject(css$d);
11319
11378
 
11320
11379
  function Navigation$1(_ref) {
11321
11380
  var logo = _ref.logo,
@@ -11418,7 +11477,7 @@ function Navigation$1(_ref) {
11418
11477
  isMinWidth: true,
11419
11478
  isMinWidthIndicator: true,
11420
11479
  large: true,
11421
- className: cls$c.tabBar,
11480
+ className: cls$d.tabBar,
11422
11481
  isDark: isDark
11423
11482
  })), React.createElement(NavigationActions$1, null, search && React.createElement(NavigationSearchControl$1, {
11424
11483
  onChangeSearchOpen: setSearchOpen,
@@ -11597,9 +11656,9 @@ function replace$3(arr, x, val) {
11597
11656
  });
11598
11657
  }
11599
11658
 
11600
- var css$d = ".popup-module_wrapper__2a8HZ {\n width: 100%;\n height: 79px;\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n background-color: #1f4e43; }\n .popup-module_wrapper__2a8HZ .popup-module_title__1amtD {\n padding: 5px;\n font-weight: 700;\n font-size: 16px;\n line-height: 22.4px;\n text-align: center;\n color: white;\n margin-left: 94px;\n margin-right: 24px; }\n .popup-module_wrapper__2a8HZ .popup-module_description__BetQs {\n position: relative;\n color: #b9c3c1;\n padding: 5px;\n font-weight: 500;\n font-size: 16px;\n line-height: 22.4px;\n text-align: center; }\n\n@media all and (max-width: 768px) {\n .popup-module_wrapper__2a8HZ {\n width: 100%;\n height: 119px;\n flex-direction: column;\n align-items: center;\n justify-content: center; }\n .popup-module_wrapper__2a8HZ .popup-module_title__1amtD {\n margin-left: 0px;\n margin-right: 0px; } }\n";
11601
- var cls$d = {"wrapper":"popup-module_wrapper__2a8HZ","title":"popup-module_title__1amtD","description":"popup-module_description__BetQs"};
11602
- styleInject(css$d);
11659
+ var css$e = ".popup-module_wrapper__2a8HZ {\n width: 100%;\n height: 79px;\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n background-color: #1f4e43; }\n .popup-module_wrapper__2a8HZ .popup-module_title__1amtD {\n padding: 5px;\n font-weight: 700;\n font-size: 16px;\n line-height: 22.4px;\n text-align: center;\n color: white;\n margin-left: 94px;\n margin-right: 24px; }\n .popup-module_wrapper__2a8HZ .popup-module_description__BetQs {\n position: relative;\n color: #b9c3c1;\n padding: 5px;\n font-weight: 500;\n font-size: 16px;\n line-height: 22.4px;\n text-align: center; }\n\n@media all and (max-width: 768px) {\n .popup-module_wrapper__2a8HZ {\n width: 100%;\n height: 119px;\n flex-direction: column;\n align-items: center;\n justify-content: center; }\n .popup-module_wrapper__2a8HZ .popup-module_title__1amtD {\n margin-left: 0px;\n margin-right: 0px; } }\n";
11660
+ var cls$e = {"wrapper":"popup-module_wrapper__2a8HZ","title":"popup-module_title__1amtD","description":"popup-module_description__BetQs"};
11661
+ styleInject(css$e);
11603
11662
 
11604
11663
  var Popup = function Popup(_ref) {
11605
11664
  var _ref$className = _ref.className,
@@ -11609,11 +11668,11 @@ var Popup = function Popup(_ref) {
11609
11668
  _ref$description = _ref.description,
11610
11669
  description = _ref$description === void 0 ? "" : _ref$description;
11611
11670
  return React.createElement("div", {
11612
- className: classnames(cls$d.wrapper, className)
11671
+ className: classnames(cls$e.wrapper, className)
11613
11672
  }, React.createElement("div", {
11614
- className: cls$d.title
11673
+ className: cls$e.title
11615
11674
  }, title), React.createElement("div", {
11616
- className: cls$d.description
11675
+ className: cls$e.description
11617
11676
  }, description));
11618
11677
  };
11619
11678
 
@@ -11623,88 +11682,411 @@ Popup.propTypes = {
11623
11682
  description: _pt.string
11624
11683
  };
11625
11684
 
11626
- var lodash = createCommonjsModule(function (module, exports) {
11627
- (function() {
11628
-
11629
- /** Used as a safe reference for `undefined` in pre-ES5 environments. */
11630
- var undefined$1;
11685
+ var css$f = ".partner-monthly-donations-module_wrapper__1bToV {\n width: 100%;\n margin: 0 20px; }\n .partner-monthly-donations-module_wrapper__1bToV .partner-monthly-donations-module_title__2qI2n {\n font-size: 24px;\n font-weight: bold;\n line-height: 1.4;\n margin-bottom: 5px;\n font-family: \"Montserrat\", \"Roboto\", sans-serif; }\n .partner-monthly-donations-module_wrapper__1bToV .partner-monthly-donations-module_month_donation__2-0eX {\n display: flex;\n box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 29px;\n justify-content: space-around;\n border-radius: 10px;\n align-items: center;\n min-height: 152px; }\n .partner-monthly-donations-module_wrapper__1bToV .partner-monthly-donations-module_month_donation__2-0eX .partner-monthly-donations-module_month_donation_wrap__1lxLO {\n display: flex;\n align-items: center;\n justify-content: space-around;\n padding: 20px 0 20px 20px;\n width: 100%; }\n .partner-monthly-donations-module_wrapper__1bToV .partner-monthly-donations-module_month_donation__2-0eX .partner-monthly-donations-module_month_donation_text__1wLhB {\n font-size: 24px;\n line-height: 1.5;\n font-family: \"Montserrat\", \"Roboto\", sans-serif;\n font-weight: 500;\n color: #404041; }\n .partner-monthly-donations-module_wrapper__1bToV .partner-monthly-donations-module_month_donation__2-0eX .partner-monthly-donations-module_month_donation_item__hXu3n {\n margin: 0 20px;\n color: #fc595d;\n font-size: 36px;\n font-weight: bold;\n font-family: \"Arial\"; }\n .partner-monthly-donations-module_wrapper__1bToV .partner-monthly-donations-module_month_donation__2-0eX .partner-monthly-donations-module_month_donation_button_wrap__19gRb {\n padding-right: 20px; }\n .partner-monthly-donations-module_wrapper__1bToV .partner-monthly-donations-module_month_donation__2-0eX .partner-monthly-donations-module_month_donation_button_wrap__19gRb .partner-monthly-donations-module_month_donation_button__3F4P8 {\n width: 200px;\n border-radius: 60px;\n background: linear-gradient(to right, #fc595d, #ffa05a);\n padding: 8px;\n float: right;\n margin: 0 10px;\n align-items: center;\n display: flex;\n justify-content: center; }\n .partner-monthly-donations-module_wrapper__1bToV .partner-monthly-donations-module_month_donation__2-0eX .partner-monthly-donations-module_month_donation_button_wrap__19gRb .partner-monthly-donations-module_month_donation_button__3F4P8 a {\n color: white !important;\n font-family: \"Montserrat\", \"Roboto\", sans-serif;\n font-size: 14px;\n cursor: pointer;\n text-decoration: none;\n font-weight: 600; }\n\n@media (max-width: 920px) {\n .partner-monthly-donations-module_wrapper__1bToV .partner-monthly-donations-module_month_donation__2-0eX {\n flex-direction: column; }\n .partner-monthly-donations-module_wrapper__1bToV .partner-monthly-donations-module_month_donation__2-0eX .partner-monthly-donations-module_month_donation_text__1wLhB {\n font-size: 22px; }\n .partner-monthly-donations-module_wrapper__1bToV .partner-monthly-donations-module_month_donation__2-0eX .partner-monthly-donations-module_month_donation_wrap__1lxLO {\n flex-direction: column; }\n .partner-monthly-donations-module_wrapper__1bToV .partner-monthly-donations-module_month_donation__2-0eX .partner-monthly-donations-module_month_donation_wrap__1lxLO .partner-monthly-donations-module_month_donation_text__1wLhB {\n margin: 0; }\n .partner-monthly-donations-module_wrapper__1bToV .partner-monthly-donations-module_month_donation__2-0eX .partner-monthly-donations-module_month_donation_item__hXu3n {\n font-size: 30px; }\n .partner-monthly-donations-module_wrapper__1bToV .partner-monthly-donations-module_month_donation__2-0eX .partner-monthly-donations-module_month_donation_button_wrap__19gRb {\n padding-right: 0;\n padding-bottom: 20px; } }\n";
11686
+ var cls$f = {"wrapper":"partner-monthly-donations-module_wrapper__1bToV","title":"partner-monthly-donations-module_title__2qI2n","month_donation":"partner-monthly-donations-module_month_donation__2-0eX","month_donation_wrap":"partner-monthly-donations-module_month_donation_wrap__1lxLO","month_donation_text":"partner-monthly-donations-module_month_donation_text__1wLhB","month_donation_item":"partner-monthly-donations-module_month_donation_item__hXu3n","month_donation_button_wrap":"partner-monthly-donations-module_month_donation_button_wrap__19gRb","month_donation_button":"partner-monthly-donations-module_month_donation_button__3F4P8"};
11687
+ styleInject(css$f);
11631
11688
 
11632
- /** Used as the semantic version number. */
11633
- var VERSION = '4.17.15';
11689
+ var PartnerMonthlyDonations = function PartnerMonthlyDonations(_ref) {
11690
+ var totalAmount = _ref.totalAmount,
11691
+ numberOfDonations = _ref.numberOfDonations,
11692
+ donationsLink = _ref.donationsLink;
11693
+ return React.createElement("div", {
11694
+ className: cls$f.wrapper
11695
+ }, React.createElement("div", {
11696
+ className: cls$f.title
11697
+ }, "This Month"), React.createElement("div", {
11698
+ className: cls$f.month_donation
11699
+ }, React.createElement("div", {
11700
+ className: cls$f.month_donation_wrap
11701
+ }, React.createElement("p", {
11702
+ className: cls$f.month_donation_text
11703
+ }, "Total donations this month"), React.createElement("span", {
11704
+ className: cls$f.month_donation_item
11705
+ }, "$", totalAmount || 0), React.createElement("span", {
11706
+ className: cls$f.month_donation_item
11707
+ }, numberOfDonations || 0)), React.createElement("div", {
11708
+ className: cls$f.month_donation_button_wrap
11709
+ }, React.createElement("div", {
11710
+ className: cls$f.month_donation_button
11711
+ }, React.createElement("a", {
11712
+ href: donationsLink
11713
+ }, "Go to Donations ", ">>")))));
11714
+ };
11634
11715
 
11635
- /** Used as the size to enable large array optimizations. */
11636
- var LARGE_ARRAY_SIZE = 200;
11716
+ PartnerMonthlyDonations.propTypes = {
11717
+ totalAmount: _pt.number,
11718
+ numberOfDonations: _pt.number,
11719
+ donationsLink: _pt.string
11720
+ };
11637
11721
 
11638
- /** Error message constants. */
11639
- var CORE_ERROR_TEXT = 'Unsupported core-js use. Try https://npms.io/search?q=ponyfill.',
11640
- FUNC_ERROR_TEXT = 'Expected a function';
11722
+ var css$g = ".partner-monthly-stats-module_wrapper__1M7HB {\n width: 100%;\n box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 29px;\n border-radius: 10px;\n padding: 20px;\n max-width: 420px;\n text-align: center;\n line-height: 1.5;\n min-width: 120px; }\n .partner-monthly-stats-module_wrapper__1M7HB .partner-monthly-stats-module_amount_raised__3DDen {\n min-height: 80px;\n display: flex;\n align-items: center;\n flex-direction: column;\n justify-content: center; }\n .partner-monthly-stats-module_wrapper__1M7HB .partner-monthly-stats-module_amount_raised__3DDen .partner-monthly-stats-module_numeric__39u6z {\n color: #FC595D;\n font-weight: bold; }\n .partner-monthly-stats-module_wrapper__1M7HB .partner-monthly-stats-module_amount_raised__3DDen .partner-monthly-stats-module_title__VRsZU {\n font-weight: bold;\n font-family: \"Arial\", Helvetica Neue, Helvetica, sans-serif;\n color: #404041; }\n";
11723
+ var cls$g = {"wrapper":"partner-monthly-stats-module_wrapper__1M7HB","amount_raised":"partner-monthly-stats-module_amount_raised__3DDen","numeric":"partner-monthly-stats-module_numeric__39u6z","title":"partner-monthly-stats-module_title__VRsZU"};
11724
+ styleInject(css$g);
11641
11725
 
11642
- /** Used to stand-in for `undefined` hash values. */
11643
- var HASH_UNDEFINED = '__lodash_hash_undefined__';
11726
+ var PartnerMonthlyStats = function PartnerMonthlyStats(_ref) {
11727
+ var numeric = _ref.numeric,
11728
+ title = _ref.title;
11729
+ return React.createElement("div", {
11730
+ className: cls$g.wrapper
11731
+ }, React.createElement("div", {
11732
+ className: cls$g.amount_raised
11733
+ }, React.createElement("div", {
11734
+ className: cls$g.numeric
11735
+ }, numeric), React.createElement("div", {
11736
+ className: cls$g.title
11737
+ }, title)));
11738
+ };
11644
11739
 
11645
- /** Used as the maximum memoize cache size. */
11646
- var MAX_MEMOIZE_SIZE = 500;
11740
+ PartnerMonthlyStats.propTypes = {
11741
+ numeric: _pt.number,
11742
+ title: _pt.string.isRequired
11743
+ };
11647
11744
 
11648
- /** Used as the internal argument placeholder. */
11649
- var PLACEHOLDER = '__lodash_placeholder__';
11745
+ var css$h = ".partner-monthly-table-module_wrapper__e92hP {\n width: 100%;\n margin: 20px; }\n .partner-monthly-table-module_wrapper__e92hP .partner-monthly-table-module_title__2Sfuk {\n font-size: 24px;\n font-weight: bold;\n line-height: 1.4;\n margin-bottom: 5px;\n font-family: \"Montserrat\", \"Roboto\", sans-serif; }\n .partner-monthly-table-module_wrapper__e92hP .partner-monthly-table-module_table_wrap__j98xk {\n box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 29px;\n border-radius: 10px;\n padding: 20px; }\n .partner-monthly-table-module_wrapper__e92hP .partner-monthly-table-module_table_wrap__j98xk .partner-monthly-table-module_title_wrap__3zZFW {\n display: flex;\n align-items: end; }\n .partner-monthly-table-module_wrapper__e92hP .partner-monthly-table-module_table_wrap__j98xk .partner-monthly-table-module_title_wrap__3zZFW .partner-monthly-table-module_tooltip__2P0Ji {\n position: relative;\n display: inline-block; }\n .partner-monthly-table-module_wrapper__e92hP .partner-monthly-table-module_table_wrap__j98xk .partner-monthly-table-module_title_wrap__3zZFW .partner-monthly-table-module_tooltip__2P0Ji img {\n margin-bottom: 7px;\n margin-left: 5px; }\n .partner-monthly-table-module_wrapper__e92hP .partner-monthly-table-module_table_wrap__j98xk .partner-monthly-table-module_title_wrap__3zZFW .partner-monthly-table-module_tooltip__2P0Ji img svg {\n background-color: #000; }\n .partner-monthly-table-module_wrapper__e92hP .partner-monthly-table-module_table_wrap__j98xk .partner-monthly-table-module_title_wrap__3zZFW .partner-monthly-table-module_tooltip__2P0Ji .partner-monthly-table-module_tooltiptext__1Q9pA {\n visibility: hidden;\n width: 320px;\n background-color: black;\n color: #fff;\n text-align: center;\n border-radius: 6px;\n padding: 8px 13px;\n position: absolute;\n z-index: 1;\n top: 105%;\n right: 50%;\n margin-right: -162px;\n border: 1px solid #fba026;\n opacity: 0;\n transition: opacity 0.5s;\n line-height: 1.2; }\n .partner-monthly-table-module_wrapper__e92hP .partner-monthly-table-module_table_wrap__j98xk .partner-monthly-table-module_title_wrap__3zZFW .partner-monthly-table-module_tooltip__2P0Ji .partner-monthly-table-module_tooltiptext__1Q9pA::after {\n content: \"\";\n position: absolute;\n bottom: 100%;\n left: 50%;\n margin-left: -5px;\n border-width: 5px;\n border-style: solid;\n border-color: transparent transparent #fba026 transparent; }\n .partner-monthly-table-module_wrapper__e92hP .partner-monthly-table-module_table_wrap__j98xk .partner-monthly-table-module_title_wrap__3zZFW .partner-monthly-table-module_tooltip__2P0Ji:hover .partner-monthly-table-module_tooltiptext__1Q9pA {\n visibility: visible;\n opacity: 1; }\n .partner-monthly-table-module_wrapper__e92hP .partner-monthly-table-module_table_wrap__j98xk table {\n border-collapse: collapse;\n margin-bottom: 50px; }\n .partner-monthly-table-module_wrapper__e92hP .partner-monthly-table-module_table_wrap__j98xk th,\n .partner-monthly-table-module_wrapper__e92hP .partner-monthly-table-module_table_wrap__j98xk td {\n border-bottom: 1px solid #d5d5d5;\n padding: 20px 5px; }\n .partner-monthly-table-module_wrapper__e92hP td {\n text-align: center; }\n";
11746
+ var cls$h = {"wrapper":"partner-monthly-table-module_wrapper__e92hP","title":"partner-monthly-table-module_title__2Sfuk","table_wrap":"partner-monthly-table-module_table_wrap__j98xk","title_wrap":"partner-monthly-table-module_title_wrap__3zZFW","tooltip":"partner-monthly-table-module_tooltip__2P0Ji","tooltiptext":"partner-monthly-table-module_tooltiptext__1Q9pA"};
11747
+ styleInject(css$h);
11650
11748
 
11651
- /** Used to compose bitmasks for cloning. */
11652
- var CLONE_DEEP_FLAG = 1,
11653
- CLONE_FLAT_FLAG = 2,
11654
- CLONE_SYMBOLS_FLAG = 4;
11749
+ const img$8 = "data:image/svg+xml,%3c%3fxml version='1.0' encoding='utf-8'%3f%3e%3c!-- Uploaded to: SVG Repo%2c www.svgrepo.com%2c Generator: SVG Repo Mixer Tools --%3e%3csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M1 12C1 5.92487 5.92487 1 12 1C18.0751 1 23 5.92487 23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12ZM10.3027 13.3942C10.2316 13.7147 10.5038 14 10.8479 14H13.0406C13.2979 14 13.5151 13.8351 13.6064 13.6061C13.697 13.3789 14.0117 12.9674 14.254 12.7518C14.4827 12.5112 14.7213 12.2848 14.9563 12.0618C15.8824 11.183 16.754 10.356 16.754 8.91047C16.754 6.40301 14.582 5 12.2707 5C10.5038 5 8.06416 5.80604 7.58396 8.50363C7.48716 9.04737 7.94773 9.5 8.50002 9.5H9.91229C10.4388 9.5 10.8312 9.07642 11.0121 8.582C11.1863 8.10604 11.5379 7.7551 12.2707 7.7551C13.6066 7.7551 13.6064 9.22371 12.8346 10.1843C12.5434 10.5467 12.2023 10.8677 11.8648 11.1853C11.1798 11.8298 10.5098 12.4602 10.3027 13.3942ZM13.9999 17C13.9999 18.1046 13.1045 19 11.9999 19C10.8954 19 9.99994 18.1046 9.99994 17C9.99994 15.8954 10.8954 15 11.9999 15C13.1045 15 13.9999 15.8954 13.9999 17Z' fill='%23efefef'/%3e%3c/svg%3e";
11655
11750
 
11656
- /** Used to compose bitmasks for value comparisons. */
11657
- var COMPARE_PARTIAL_FLAG = 1,
11658
- COMPARE_UNORDERED_FLAG = 2;
11751
+ var scope$4 = {
11752
+ styles: React.createElement(_JSXStyle, {
11753
+ id: "3002567813"
11754
+ }, ".main-list-meta.jsx-3002567813{margin-left:10px;}\n/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInBhcnRuZXItbW9udGhseS10YWJsZS50c3giXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBY3lCLEFBR3NCLGlCQUNuQiIsImZpbGUiOiJwYXJ0bmVyLW1vbnRobHktdGFibGUudHN4Iiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IFJlYWN0IGZyb20gXCJyZWFjdFwiO1xuaW1wb3J0IGNsYXNzbmFtZXMgZnJvbSBcImNsYXNzbmFtZXNcIjtcbmltcG9ydCBjbHMgZnJvbSBcIi4vcGFydG5lci1tb250aGx5LXRhYmxlLm1vZHVsZS5zY3NzXCI7XG5pbXBvcnQgY3NzIGZyb20gXCJzdHlsZWQtanN4L2Nzc1wiO1xuaW1wb3J0IFF1ZXN0aW9uSWNvbiBmcm9tIFwiLi9xdWVzdGlvbi1jaXJjbGUuc3ZnXCI7XG5cbmV4cG9ydCB0eXBlIENvbHVtblRhYmxlUHJvcHMgPSB7XG4gIGtleTogc3RyaW5nO1xuICBsYWJlbDogc3RyaW5nO1xuICBhbGlnbjogXCJjZW50ZXJcIiB8IFwibGVmdFwiIHwgXCJyaWdodFwiO1xuICByb3dQcmVmaXhJY29uPzogc3RyaW5nO1xuICByZW5kZXJDZWxsOiAoaXRlbTogYW55KSA9PiBSZWFjdC5SZWFjdE5vZGU7XG59O1xuXG5jb25zdCBzY29wZSA9IGNzcy5yZXNvbHZlYFxuICAubWFpbi1saXN0LW1ldGEge1xuICAgIG1hcmdpbi1sZWZ0OiAxMHB4O1xuICB9XG5gO1xuXG5leHBvcnQgaW50ZXJmYWNlIFBhcnRuZXJNb250aGx5VGFibGVQcm9wcyB7XG4gIGNvbHVtbnM6IEFycmF5PENvbHVtblRhYmxlUHJvcHM+O1xuICBkYXRhOiBBcnJheTxvYmplY3Q+O1xuICB0aXRsZT86IHN0cmluZztcbiAgdG9vbHRpcD86IHN0cmluZztcbn1cblxuY29uc3QgUGFydG5lck1vbnRobHlUYWJsZSA9ICh7XG4gIGNvbHVtbnMsXG4gIGRhdGEsXG4gIHRpdGxlLFxuICB0b29sdGlwLFxufTogUGFydG5lck1vbnRobHlUYWJsZVByb3BzKSA9PiB7XG4gIGNvbnN0IHJlbmRlckhlYWRlciA9ICgpID0+IHtcbiAgICByZXR1cm4gKFxuICAgICAgPHRyPlxuICAgICAgICB7Y29sdW1ucy5tYXAoKGNvbHVtbiwgaW5kZXgpID0+IChcbiAgICAgICAgICA8dGgga2V5PXtpbmRleH0gc3R5bGU9e3sgdGV4dEFsaWduOiBjb2x1bW4uYWxpZ24gfX0+XG4gICAgICAgICAgICB7Y29sdW1uLmxhYmVsfVxuICAgICAgICAgIDwvdGg+XG4gICAgICAgICkpfVxuICAgICAgPC90cj5cbiAgICApO1xuICB9O1xuXG4gIGNvbnN0IHJlbmRlclJvdyA9IChpdGVtOiBhbnksIHJvd0luZGV4OiBudW1iZXIpID0+IHtcbiAgICByZXR1cm4gKFxuICAgICAgPHRyIGtleT17cm93SW5kZXh9PlxuICAgICAgICB7Y29sdW1ucy5tYXAoKGNvbHVtbiwgY29sSW5kZXgpID0+IChcbiAgICAgICAgICA8dGQga2V5PXtjb2xJbmRleH0gc3R5bGU9e3sgdGV4dEFsaWduOiBjb2x1bW4uYWxpZ24gfX0+XG4gICAgICAgICAgICB7Y29sdW1uLnJlbmRlckNlbGwoaXRlbSl9XG4gICAgICAgICAgPC90ZD5cbiAgICAgICAgKSl9XG4gICAgICA8L3RyPlxuICAgICk7XG4gIH07XG5cbiAgcmV0dXJuIChcbiAgICA8ZGl2IGNsYXNzTmFtZT17Y2xzLndyYXBwZXJ9PlxuICAgICAgPGRpdiBjbGFzc05hbWU9e2Nscy50YWJsZV93cmFwfT5cbiAgICAgICAge3RpdGxlICYmIChcbiAgICAgICAgICA8ZGl2IGNsYXNzTmFtZT17Y2xzLnRpdGxlX3dyYXB9PlxuICAgICAgICAgICAgPHAgY2xhc3NOYW1lPXtjbHMudGl0bGV9Pnt0aXRsZX08L3A+XG4gICAgICAgICAgICA8ZGl2IGNsYXNzTmFtZT17Y2xzLnRvb2x0aXB9PlxuICAgICAgICAgICAgICA8aW1nIHNyYz17UXVlc3Rpb25JY29ufSB3aWR0aD17MjJ9IGhlaWdodD17MjJ9IC8+XG4gICAgICAgICAgICAgIDxzcGFuIGNsYXNzTmFtZT17Y2xzLnRvb2x0aXB0ZXh0fT57dG9vbHRpcH08L3NwYW4+XG4gICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgKX1cblxuICAgICAgICA8dGFibGUgc3R5bGU9e3sgd2lkdGg6IFwiMTAwJVwiIH19PlxuICAgICAgICAgIDx0aGVhZD57cmVuZGVySGVhZGVyKCl9PC90aGVhZD5cbiAgICAgICAgICA8dGJvZHk+e2RhdGEubWFwKChpdGVtLCBpbmRleCkgPT4gcmVuZGVyUm93KGl0ZW0sIGluZGV4KSl9PC90Ym9keT5cbiAgICAgICAgPC90YWJsZT5cbiAgICAgIDwvZGl2PlxuICAgIDwvZGl2PlxuICApO1xufTtcblxuZXhwb3J0IGRlZmF1bHQgUGFydG5lck1vbnRobHlUYWJsZTtcbiJdfQ== */\n/*@ sourceURL=partner-monthly-table.tsx */"),
11755
+ className: "jsx-3002567813"
11756
+ };
11659
11757
 
11660
- /** Used to compose bitmasks for function metadata. */
11661
- var WRAP_BIND_FLAG = 1,
11662
- WRAP_BIND_KEY_FLAG = 2,
11663
- WRAP_CURRY_BOUND_FLAG = 4,
11664
- WRAP_CURRY_FLAG = 8,
11665
- WRAP_CURRY_RIGHT_FLAG = 16,
11666
- WRAP_PARTIAL_FLAG = 32,
11667
- WRAP_PARTIAL_RIGHT_FLAG = 64,
11668
- WRAP_ARY_FLAG = 128,
11669
- WRAP_REARG_FLAG = 256,
11670
- WRAP_FLIP_FLAG = 512;
11758
+ var PartnerMonthlyTable = function PartnerMonthlyTable(_ref) {
11759
+ var columns = _ref.columns,
11760
+ data = _ref.data,
11761
+ title = _ref.title,
11762
+ tooltip = _ref.tooltip;
11671
11763
 
11672
- /** Used as default options for `_.truncate`. */
11673
- var DEFAULT_TRUNC_LENGTH = 30,
11674
- DEFAULT_TRUNC_OMISSION = '...';
11764
+ var renderHeader = function renderHeader() {
11765
+ return React.createElement("tr", null, columns.map(function (column, index) {
11766
+ return React.createElement("th", {
11767
+ key: index,
11768
+ style: {
11769
+ textAlign: column.align
11770
+ }
11771
+ }, column.label);
11772
+ }));
11773
+ };
11675
11774
 
11676
- /** Used to detect hot functions by number of calls within a span of milliseconds. */
11677
- var HOT_COUNT = 800,
11678
- HOT_SPAN = 16;
11775
+ var renderRow = function renderRow(item, rowIndex) {
11776
+ return React.createElement("tr", {
11777
+ key: rowIndex
11778
+ }, columns.map(function (column, colIndex) {
11779
+ return React.createElement("td", {
11780
+ key: colIndex,
11781
+ style: {
11782
+ textAlign: column.align
11783
+ }
11784
+ }, column.renderCell(item));
11785
+ }));
11786
+ };
11679
11787
 
11680
- /** Used to indicate the type of lazy iteratees. */
11681
- var LAZY_FILTER_FLAG = 1,
11682
- LAZY_MAP_FLAG = 2,
11683
- LAZY_WHILE_FLAG = 3;
11788
+ return React.createElement("div", {
11789
+ className: cls$h.wrapper
11790
+ }, React.createElement("div", {
11791
+ className: cls$h.table_wrap
11792
+ }, title && React.createElement("div", {
11793
+ className: cls$h.title_wrap
11794
+ }, React.createElement("p", {
11795
+ className: cls$h.title
11796
+ }, title), React.createElement("div", {
11797
+ className: cls$h.tooltip
11798
+ }, React.createElement("img", {
11799
+ src: img$8,
11800
+ width: 22,
11801
+ height: 22
11802
+ }), React.createElement("span", {
11803
+ className: cls$h.tooltiptext
11804
+ }, tooltip))), React.createElement("table", {
11805
+ style: {
11806
+ width: "100%"
11807
+ }
11808
+ }, React.createElement("thead", null, renderHeader()), React.createElement("tbody", null, data.map(function (item, index) {
11809
+ return renderRow(item, index);
11810
+ })))));
11811
+ };
11684
11812
 
11685
- /** Used as references for various `Number` constants. */
11686
- var INFINITY = 1 / 0,
11687
- MAX_SAFE_INTEGER = 9007199254740991,
11688
- MAX_INTEGER = 1.7976931348623157e+308,
11689
- NAN = 0 / 0;
11813
+ PartnerMonthlyTable.propTypes = {
11814
+ columns: _pt.any.isRequired,
11815
+ data: _pt.any.isRequired,
11816
+ title: _pt.string,
11817
+ tooltip: _pt.string
11818
+ };
11690
11819
 
11691
- /** Used as references for the maximum length and index of an array. */
11692
- var MAX_ARRAY_LENGTH = 4294967295,
11693
- MAX_ARRAY_INDEX = MAX_ARRAY_LENGTH - 1,
11694
- HALF_MAX_ARRAY_LENGTH = MAX_ARRAY_LENGTH >>> 1;
11820
+ var css$i = ".partner-chart-stats-module_wrapper__1nf17 {\n border-radius: 8px;\n background: #FFF;\n box-shadow: 0px 1px 8px 0px rgba(110, 110, 110, 0.25);\n max-width: 250px;\n display: flex;\n padding: 16px 24px;\n flex-direction: column;\n align-items: center;\n grid-gap: 8px;\n grid-gap: 8px;\n gap: 8px; }\n .partner-chart-stats-module_wrapper__1nf17 .partner-chart-stats-module_amount_raised__3YgU4 {\n min-height: 80px;\n display: flex;\n align-items: center;\n flex-direction: column;\n justify-content: center;\n font-family: \"Montserrat\", \"Roboto\", sans-serif; }\n .partner-chart-stats-module_wrapper__1nf17 .partner-chart-stats-module_amount_raised__3YgU4 .partner-chart-stats-module_numeric__2ehBR {\n color: #ACACAC;\n font-weight: bold;\n font-size: 24px;\n line-height: 32px; }\n .partner-chart-stats-module_wrapper__1nf17 .partner-chart-stats-module_amount_raised__3YgU4 .partner-chart-stats-module_title__3VP2i {\n margin-top: 10px;\n font-weight: 400;\n font-size: 14px;\n color: #ACACAC;\n text-align: center; }\n";
11821
+ var cls$i = {"wrapper":"partner-chart-stats-module_wrapper__1nf17","amount_raised":"partner-chart-stats-module_amount_raised__3YgU4","numeric":"partner-chart-stats-module_numeric__2ehBR","title":"partner-chart-stats-module_title__3VP2i"};
11822
+ styleInject(css$i);
11695
11823
 
11696
- /** Used to associate wrap methods with their bit flags. */
11697
- var wrapFlags = [
11698
- ['ary', WRAP_ARY_FLAG],
11699
- ['bind', WRAP_BIND_FLAG],
11700
- ['bindKey', WRAP_BIND_KEY_FLAG],
11701
- ['curry', WRAP_CURRY_FLAG],
11702
- ['curryRight', WRAP_CURRY_RIGHT_FLAG],
11703
- ['flip', WRAP_FLIP_FLAG],
11704
- ['partial', WRAP_PARTIAL_FLAG],
11705
- ['partialRight', WRAP_PARTIAL_RIGHT_FLAG],
11706
- ['rearg', WRAP_REARG_FLAG]
11707
- ];
11824
+ var PartnerChartStats = function PartnerChartStats(_ref) {
11825
+ var currentYearData = _ref.currentYearData,
11826
+ totalDonation = _ref.totalDonation,
11827
+ amount = _ref.amount,
11828
+ title = _ref.title,
11829
+ active = _ref.active,
11830
+ className = _ref.className;
11831
+ var partnerColor = "#FF7658";
11832
+ var formatterMoney = new Intl.NumberFormat("en-US", {
11833
+ style: "currency",
11834
+ currency: "USD",
11835
+ minimumFractionDigits: 0
11836
+ });
11837
+ return React.createElement("div", {
11838
+ className: _JSXStyle.dynamic([["1595172171", [partnerColor, partnerColor]]]) + " " + (classnames(cls$i.wrapper, className, {
11839
+ active: active
11840
+ }) || "")
11841
+ }, React.createElement("div", {
11842
+ className: _JSXStyle.dynamic([["1595172171", [partnerColor, partnerColor]]]) + " " + (classnames(cls$i.amount_raised, "chartCard") || "")
11843
+ }, currentYearData && React.createElement("div", {
11844
+ className: _JSXStyle.dynamic([["1595172171", [partnerColor, partnerColor]]]) + " " + (classnames(cls$i.numeric, "numeric") || "")
11845
+ }, formatterMoney.format(currentYearData.reduce(function (a, b) {
11846
+ return parseFloat(a) + parseFloat(b);
11847
+ }, 0)).replace("$", "$ ")), totalDonation && React.createElement("div", {
11848
+ className: _JSXStyle.dynamic([["1595172171", [partnerColor, partnerColor]]]) + " " + (classnames(cls$i.numeric, "numeric") || "")
11849
+ }, "$ ", totalDonation), amount && React.createElement("div", {
11850
+ className: _JSXStyle.dynamic([["1595172171", [partnerColor, partnerColor]]]) + " " + (classnames(cls$i.numeric, "numeric") || "")
11851
+ }, "$ ", amount), React.createElement("div", {
11852
+ className: _JSXStyle.dynamic([["1595172171", [partnerColor, partnerColor]]]) + " " + (classnames(cls$i.title, "title") || "")
11853
+ }, title)), React.createElement(_JSXStyle, {
11854
+ id: "1595172171",
11855
+ dynamic: [partnerColor, partnerColor]
11856
+ }, ".active.__jsx-style-dynamic-selector{border-bottom:2px solid ".concat(partnerColor, ";}.active.__jsx-style-dynamic-selector .chartCard.__jsx-style-dynamic-selector .numeric.__jsx-style-dynamic-selector{color:").concat(partnerColor, ";}.active.__jsx-style-dynamic-selector .chartCard.__jsx-style-dynamic-selector .title.__jsx-style-dynamic-selector{color:#404041;}\n/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInBhcnRuZXItY2hhcnQtc3RhdHMudHN4Il0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQWdEa0IsQUFHZ0UsQUFHbEIsQUFHckIsY0FDaEIscUJBSEEsa0JBSEEiLCJmaWxlIjoicGFydG5lci1jaGFydC1zdGF0cy50c3giLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgUmVhY3QgZnJvbSBcInJlYWN0XCI7XG5pbXBvcnQgY24gZnJvbSBcImNsYXNzbmFtZXNcIjtcbmltcG9ydCBjbHMgZnJvbSBcIi4vcGFydG5lci1jaGFydC1zdGF0cy5tb2R1bGUuc2Nzc1wiO1xuXG5leHBvcnQgaW50ZXJmYWNlIFBhcnRuZXJDaGFydFN0YXRzUHJvcHMge1xuICBjdXJyZW50WWVhckRhdGE/OiBBcnJheTxudW1iZXI+O1xuICB0b3RhbERvbmF0aW9uPzogc3RyaW5nO1xuICBhbW91bnQ/OiBudW1iZXI7XG4gIHRpdGxlOiBzdHJpbmc7XG4gIGFjdGl2ZT86IGJvb2xlYW47XG4gIGNsYXNzTmFtZT86IHN0cmluZztcbn1cblxuY29uc3QgUGFydG5lckNoYXJ0U3RhdHMgPSAoe1xuICBjdXJyZW50WWVhckRhdGEsXG4gIHRvdGFsRG9uYXRpb24sXG4gIGFtb3VudCxcbiAgdGl0bGUsXG4gIGFjdGl2ZSxcbiAgY2xhc3NOYW1lLFxufTogUGFydG5lckNoYXJ0U3RhdHNQcm9wcykgPT4ge1xuICBjb25zdCBwYXJ0bmVyQ29sb3IgPSBcIiNGRjc2NThcIjtcbiAgY29uc3QgZm9ybWF0dGVyTW9uZXkgPSBuZXcgSW50bC5OdW1iZXJGb3JtYXQoXCJlbi1VU1wiLCB7XG4gICAgc3R5bGU6IFwiY3VycmVuY3lcIixcbiAgICBjdXJyZW5jeTogXCJVU0RcIixcbiAgICBtaW5pbXVtRnJhY3Rpb25EaWdpdHM6IDAsXG4gIH0pO1xuICByZXR1cm4gKFxuICAgIDxkaXYgY2xhc3NOYW1lPXtjbihjbHMud3JhcHBlciwgY2xhc3NOYW1lLCB7IGFjdGl2ZTogYWN0aXZlIH0pfT5cbiAgICAgIDxkaXYgY2xhc3NOYW1lPXtjbihjbHMuYW1vdW50X3JhaXNlZCwgXCJjaGFydENhcmRcIil9PlxuICAgICAgICB7Y3VycmVudFllYXJEYXRhICYmIChcbiAgICAgICAgICA8ZGl2IGNsYXNzTmFtZT17Y24oY2xzLm51bWVyaWMsIFwibnVtZXJpY1wiKX0+XG4gICAgICAgICAgICB7Zm9ybWF0dGVyTW9uZXlcbiAgICAgICAgICAgICAgLmZvcm1hdChcbiAgICAgICAgICAgICAgICBjdXJyZW50WWVhckRhdGEucmVkdWNlKFxuICAgICAgICAgICAgICAgICAgKGE6IGFueSwgYjogYW55KSA9PiBwYXJzZUZsb2F0KGEpICsgcGFyc2VGbG9hdChiKSxcbiAgICAgICAgICAgICAgICAgIDBcbiAgICAgICAgICAgICAgICApXG4gICAgICAgICAgICAgIClcbiAgICAgICAgICAgICAgLnJlcGxhY2UoXCIkXCIsIFwiJCBcIil9XG4gICAgICAgICAgPC9kaXY+XG4gICAgICAgICl9XG4gICAgICAgIHt0b3RhbERvbmF0aW9uICYmIChcbiAgICAgICAgICA8ZGl2IGNsYXNzTmFtZT17Y24oY2xzLm51bWVyaWMsIFwibnVtZXJpY1wiKX0+JCB7dG90YWxEb25hdGlvbn08L2Rpdj5cbiAgICAgICAgKX1cbiAgICAgICAge2Ftb3VudCAmJiA8ZGl2IGNsYXNzTmFtZT17Y24oY2xzLm51bWVyaWMsIFwibnVtZXJpY1wiKX0+JCB7YW1vdW50fTwvZGl2Pn1cbiAgICAgICAgPGRpdiBjbGFzc05hbWU9e2NuKGNscy50aXRsZSwgXCJ0aXRsZVwiKX0+e3RpdGxlfTwvZGl2PlxuICAgICAgPC9kaXY+XG4gICAgICA8c3R5bGUganN4PntgXG4gICAgICAgIC5hY3RpdmUge1xuICAgICAgICAgIGJvcmRlci1ib3R0b206IDJweCBzb2xpZCAke3BhcnRuZXJDb2xvcn07XG4gICAgICAgIH1cbiAgICAgICAgLmFjdGl2ZSAuY2hhcnRDYXJkIC5udW1lcmljIHtcbiAgICAgICAgICBjb2xvcjogJHtwYXJ0bmVyQ29sb3J9O1xuICAgICAgICB9XG4gICAgICAgIC5hY3RpdmUgLmNoYXJ0Q2FyZCAudGl0bGUge1xuICAgICAgICAgIGNvbG9yOiAjNDA0MDQxO1xuICAgICAgICB9XG4gICAgICBgfTwvc3R5bGU+XG4gICAgPC9kaXY+XG4gICk7XG59O1xuXG5leHBvcnQgZGVmYXVsdCBQYXJ0bmVyQ2hhcnRTdGF0cztcbiJdfQ== */\n/*@ sourceURL=partner-chart-stats.tsx */")));
11857
+ };
11858
+
11859
+ PartnerChartStats.propTypes = {
11860
+ currentYearData: _pt.any,
11861
+ totalDonation: _pt.string,
11862
+ amount: _pt.number,
11863
+ title: _pt.string.isRequired,
11864
+ active: _pt.bool,
11865
+ className: _pt.string
11866
+ };
11867
+
11868
+ var css$j = ".this-month-card-module_wrapper__2iVxF {\n border-radius: 16px;\n box-shadow: 0px 1px 8px 0px rgba(110, 110, 110, 0.25);\n background: #FFFFFF;\n display: flex;\n flex-direction: column;\n padding: 30px;\n min-width: 330px; }\n .this-month-card-module_wrapper__2iVxF .this-month-card-module_thisMonthCardWrap__1wEQy {\n font-family: \"Montserrat\", \"Roboto\", sans-serif; }\n .this-month-card-module_wrapper__2iVxF .this-month-card-module_thisMonthCardWrap__1wEQy .this-month-card-module_header__3mqXh {\n display: flex;\n justify-content: space-between;\n font-weight: bold;\n padding: 5px; }\n .this-month-card-module_wrapper__2iVxF .this-month-card-module_thisMonthCardWrap__1wEQy .this-month-card-module_header__3mqXh .this-month-card-module_header_left__LmYEa {\n display: flex;\n flex-direction: column;\n text-align: center; }\n .this-month-card-module_wrapper__2iVxF .this-month-card-module_thisMonthCardWrap__1wEQy .this-month-card-module_header__3mqXh .this-month-card-module_header_left__LmYEa .this-month-card-module_header_left_donation__stf8T {\n height: 100%;\n justify-content: space-between;\n display: flex;\n flex-direction: column; }\n .this-month-card-module_wrapper__2iVxF .this-month-card-module_thisMonthCardWrap__1wEQy .this-month-card-module_header__3mqXh .this-month-card-module_header_left__LmYEa .this-month-card-module_header_left_donation__stf8T .this-month-card-module_donation_amount__3UdUG {\n font-size: 32px;\n color: #FF7658;\n padding: 15px 0; }\n .this-month-card-module_wrapper__2iVxF .this-month-card-module_thisMonthCardWrap__1wEQy .this-month-card-module_header__3mqXh .this-month-card-module_header_left__LmYEa .this-month-card-module_header_left_donation__stf8T .this-month-card-module_donation_text__22Bgj {\n font-size: 14px;\n color: #404041; }\n .this-month-card-module_wrapper__2iVxF .this-month-card-module_thisMonthCardWrap__1wEQy .this-month-card-module_header__3mqXh .this-month-card-module_header_right__1OEQJ img {\n height: 100%;\n width: auto; }\n .this-month-card-module_wrapper__2iVxF .this-month-card-module_thisMonthCardWrap__1wEQy .this-month-card-module_content__2buEr {\n padding: 5px; }\n .this-month-card-module_wrapper__2iVxF .this-month-card-module_thisMonthCardWrap__1wEQy .this-month-card-module_content__2buEr .this-month-card-module_content_item__10Znq {\n padding: 8px 0;\n border-bottom: thin solid #D2CECE;\n display: flex; }\n .this-month-card-module_wrapper__2iVxF .this-month-card-module_thisMonthCardWrap__1wEQy .this-month-card-module_content__2buEr .this-month-card-module_content_item__10Znq .this-month-card-module_content_item_amount__2Z1_K {\n font-size: 16px;\n color: #FF7658;\n font-weight: 700;\n min-width: 54px;\n padding: 0 5px; }\n .this-month-card-module_wrapper__2iVxF .this-month-card-module_thisMonthCardWrap__1wEQy .this-month-card-module_content__2buEr .this-month-card-module_content_item__10Znq .this-month-card-module_content_item_text__1tlOV {\n font-size: 14px;\n color: #404041; }\n .this-month-card-module_wrapper__2iVxF .this-month-card-module_thisMonthCardWrap__1wEQy .this-month-card-module_content__2buEr .this-month-card-module_content_item__10Znq:last-child {\n border-bottom: none; }\n .this-month-card-module_wrapper__2iVxF .this-month-card-module_thisMonthCardWrap__1wEQy .this-month-card-module_month_donation_button_wrap__3gxAJ {\n padding-top: 10px; }\n .this-month-card-module_wrapper__2iVxF .this-month-card-module_thisMonthCardWrap__1wEQy .this-month-card-module_month_donation_button_wrap__3gxAJ .this-month-card-module_month_donation_button__FTqnS {\n padding: 8px 16px;\n border-radius: 20px;\n background: linear-gradient(90deg, #F05C6A 1.8%, #FF995A 94.53%);\n float: left;\n align-items: center;\n display: flex;\n justify-content: center; }\n .this-month-card-module_wrapper__2iVxF .this-month-card-module_thisMonthCardWrap__1wEQy .this-month-card-module_month_donation_button_wrap__3gxAJ .this-month-card-module_month_donation_button__FTqnS a {\n color: white !important;\n font-size: 14px;\n cursor: pointer;\n text-decoration: none;\n font-weight: 700; }\n";
11869
+ var cls$j = {"wrapper":"this-month-card-module_wrapper__2iVxF","thisMonthCardWrap":"this-month-card-module_thisMonthCardWrap__1wEQy","header":"this-month-card-module_header__3mqXh","header_left":"this-month-card-module_header_left__LmYEa","header_left_donation":"this-month-card-module_header_left_donation__stf8T","donation_amount":"this-month-card-module_donation_amount__3UdUG","donation_text":"this-month-card-module_donation_text__22Bgj","header_right":"this-month-card-module_header_right__1OEQJ","content":"this-month-card-module_content__2buEr","content_item":"this-month-card-module_content_item__10Znq","content_item_amount":"this-month-card-module_content_item_amount__2Z1_K","content_item_text":"this-month-card-module_content_item_text__1tlOV","month_donation_button_wrap":"this-month-card-module_month_donation_button_wrap__3gxAJ","month_donation_button":"this-month-card-module_month_donation_button__FTqnS"};
11870
+ styleInject(css$j);
11871
+
11872
+ var ThisMonthCard = function ThisMonthCard(_ref) {
11873
+ var totalDonations = _ref.totalDonations,
11874
+ thisMonthData = _ref.thisMonthData,
11875
+ imgLink = _ref.imgLink,
11876
+ buttonLink = _ref.buttonLink,
11877
+ buttonText = _ref.buttonText,
11878
+ className = _ref.className;
11879
+ var formatterMoney = new Intl.NumberFormat("en-US", {
11880
+ style: "currency",
11881
+ currency: "USD",
11882
+ minimumFractionDigits: 0
11883
+ });
11884
+ return React.createElement("div", {
11885
+ className: classnames(cls$j.wrapper, className)
11886
+ }, React.createElement("div", {
11887
+ className: classnames(cls$j.thisMonthCardWrap, "thisMonthCard")
11888
+ }, React.createElement("div", {
11889
+ className: cls$j.header
11890
+ }, React.createElement("div", {
11891
+ className: cls$j.header_left
11892
+ }, React.createElement("div", {
11893
+ className: cls$j.header_left_donation
11894
+ }, React.createElement("div", {
11895
+ className: cls$j.donation_amount
11896
+ }, formatterMoney.format(totalDonations).replace("$", "$ ")), React.createElement("div", {
11897
+ className: cls$j.donation_text
11898
+ }, "Total donations"))), React.createElement("div", {
11899
+ className: cls$j.header_right
11900
+ }, React.createElement("img", {
11901
+ src: imgLink,
11902
+ alt: "this-month-icon"
11903
+ }))), thisMonthData && React.createElement("div", {
11904
+ className: cls$j.content
11905
+ }, thisMonthData.map(function (item, index) {
11906
+ return React.createElement("div", {
11907
+ className: cls$j.content_item,
11908
+ key: index
11909
+ }, React.createElement("div", {
11910
+ className: cls$j.content_item_amount
11911
+ }, item.itemAmount), " ", React.createElement("div", {
11912
+ className: cls$j.content_item_text
11913
+ }, item.itemText));
11914
+ })), React.createElement("div", {
11915
+ className: cls$j.month_donation_button_wrap
11916
+ }, React.createElement("div", {
11917
+ className: cls$j.month_donation_button
11918
+ }, React.createElement("a", {
11919
+ href: buttonLink,
11920
+ target: "_blank",
11921
+ rel: "noopener noreferrer"
11922
+ }, buttonText)))));
11923
+ };
11924
+
11925
+ ThisMonthCard.propTypes = {
11926
+ totalDonations: _pt.number.isRequired,
11927
+ thisMonthData: _pt.any,
11928
+ imgLink: _pt.string.isRequired,
11929
+ buttonLink: _pt.string.isRequired,
11930
+ buttonText: _pt.string.isRequired,
11931
+ className: _pt.string
11932
+ };
11933
+
11934
+ var css$k = ".partner-toggle-button-module_toggle_btn_item__1DdKM {\n font-family: \"Montserrat\", sans-serif;\n justify-content: center;\n align-items: center;\n display: flex;\n padding: 18px 24px;\n border: thin solid transparent;\n border-radius: 100px;\n font-weight: normal;\n font-size: 12px;\n cursor: pointer; }\n";
11935
+ var cls$k = {"toggle_btn_item":"partner-toggle-button-module_toggle_btn_item__1DdKM"};
11936
+ styleInject(css$k);
11937
+
11938
+ var PartnerToggleButton = function PartnerToggleButton(_ref) {
11939
+ var label = _ref.label,
11940
+ active = _ref.active,
11941
+ onClick = _ref.onClick;
11942
+ return React.createElement("div", {
11943
+ onClick: onClick,
11944
+ className: "jsx-90599560" + " " + (classnames(cls$k.toggle_btn_item, {
11945
+ active: active
11946
+ }) || "")
11947
+ }, label, React.createElement(_JSXStyle, {
11948
+ id: "90599560"
11949
+ }, ".active.jsx-90599560{background-image:linear-gradient(to right,#f05c6a,#ff995a);color:#fff;}\n/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInBhcnRuZXItdG9nZ2xlLWJ1dHRvbi50c3giXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBcUJrQixBQUd3RSwyREFDbEQsV0FDYiIsImZpbGUiOiJwYXJ0bmVyLXRvZ2dsZS1idXR0b24udHN4Iiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IFJlYWN0IGZyb20gXCJyZWFjdFwiO1xuaW1wb3J0IGNuIGZyb20gXCJjbGFzc25hbWVzXCI7XG5pbXBvcnQgY2xzIGZyb20gXCIuL3BhcnRuZXItdG9nZ2xlLWJ1dHRvbi5tb2R1bGUuc2Nzc1wiO1xuXG5pbnRlcmZhY2UgUGFydG5lclRvZ2dsZUJ1dHRvblByb3BzIHtcbiAgbGFiZWw6IHN0cmluZztcbiAgYWN0aXZlOiBib29sZWFuO1xuICBvbkNsaWNrOiAoKSA9PiB2b2lkO1xufVxuXG5jb25zdCBQYXJ0bmVyVG9nZ2xlQnV0dG9uID0gKHtcbiAgbGFiZWwsXG4gIGFjdGl2ZSxcbiAgb25DbGljayxcbn06IFBhcnRuZXJUb2dnbGVCdXR0b25Qcm9wcykgPT4ge1xuICByZXR1cm4gKFxuICAgIDxkaXZcbiAgICAgIG9uQ2xpY2s9e29uQ2xpY2t9XG4gICAgICBjbGFzc05hbWU9e2NuKGNscy50b2dnbGVfYnRuX2l0ZW0sIHsgYWN0aXZlOiBhY3RpdmUgfSl9XG4gICAgPlxuICAgICAge2xhYmVsfVxuICAgICAgPHN0eWxlIGpzeD57YFxuICAgICAgICAuYWN0aXZlIHtcbiAgICAgICAgICBiYWNrZ3JvdW5kLWltYWdlOiBsaW5lYXItZ3JhZGllbnQodG8gcmlnaHQsICNmMDVjNmEsICNmZjk5NWEpO1xuICAgICAgICAgIGNvbG9yOiAjZmZmO1xuICAgICAgICB9XG4gICAgICBgfTwvc3R5bGU+XG4gICAgPC9kaXY+XG4gICk7XG59O1xuXG5leHBvcnQgZGVmYXVsdCBQYXJ0bmVyVG9nZ2xlQnV0dG9uO1xuIl19 */\n/*@ sourceURL=partner-toggle-button.tsx */"));
11950
+ };
11951
+
11952
+ PartnerToggleButton.propTypes = {
11953
+ label: _pt.string.isRequired,
11954
+ active: _pt.bool.isRequired,
11955
+ onClick: _pt.func.isRequired
11956
+ };
11957
+
11958
+ var css$l = ".partner-toggle-button-block-module_wrapper__2vLDr {\n font-family: \"Montserrat\", sans-serif;\n display: flex;\n background: #FFF;\n width: -webkit-fit-content;\n width: fit-content;\n height: -webkit-fit-content;\n height: fit-content;\n color: #404041;\n font-weight: 400;\n font-size: 12px;\n margin: 0;\n padding: 1px;\n border-radius: 32px;\n cursor: pointer;\n background: linear-gradient(to right, #F05C6A, #FF995A); }\n .partner-toggle-button-block-module_wrapper__2vLDr .partner-toggle-button-block-module_toggle_btn_wrap__36HeL {\n padding: 1px;\n width: -webkit-fit-content;\n width: fit-content;\n border-radius: 100px;\n display: flex;\n background-color: #FFF; }\n";
11959
+ var cls$l = {"wrapper":"partner-toggle-button-block-module_wrapper__2vLDr","toggle_btn_wrap":"partner-toggle-button-block-module_toggle_btn_wrap__36HeL"};
11960
+ styleInject(css$l);
11961
+
11962
+ var PartnerToggleButtonBlock = function PartnerToggleButtonBlock(_ref) {
11963
+ var labelLeft = _ref.labelLeft,
11964
+ labelRight = _ref.labelRight,
11965
+ onClickLeft = _ref.onClickLeft,
11966
+ onClickRight = _ref.onClickRight,
11967
+ className = _ref.className,
11968
+ _ref$isActive = _ref.isActive,
11969
+ isActive = _ref$isActive === void 0 ? true : _ref$isActive;
11970
+
11971
+ var _useState = useState(isActive),
11972
+ _useState2 = _slicedToArray(_useState, 2),
11973
+ isLeftActive = _useState2[0],
11974
+ setIsLeftActive = _useState2[1];
11975
+
11976
+ return React.createElement("div", {
11977
+ className: "jsx-2609848555" + " " + (classnames(cls$l.wrapper, className) || "")
11978
+ }, React.createElement("div", {
11979
+ className: "jsx-2609848555" + " " + (classnames(cls$l.toggle_btn_wrap, "toggle-btn-wrap") || "")
11980
+ }, React.createElement(PartnerToggleButton, {
11981
+ label: labelLeft,
11982
+ active: isLeftActive,
11983
+ onClick: function onClick() {
11984
+ setIsLeftActive(true);
11985
+ onClickLeft();
11986
+ }
11987
+ }), React.createElement(PartnerToggleButton, {
11988
+ label: labelRight,
11989
+ active: !isLeftActive,
11990
+ onClick: function onClick() {
11991
+ setIsLeftActive(false);
11992
+ onClickRight();
11993
+ }
11994
+ })), React.createElement(_JSXStyle, {
11995
+ id: "2609848555"
11996
+ }, ".toggle-btn-wrap.jsx-2609848555:hover{box-shadow:0px 3px 20px 0px #fdd8d0 inset;}\n/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInBhcnRuZXItdG9nZ2xlLWJ1dHRvbi1ibG9jay50c3giXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBMkNrQixBQUdxRCwwQ0FDNUMiLCJmaWxlIjoicGFydG5lci10b2dnbGUtYnV0dG9uLWJsb2NrLnRzeCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBSZWFjdCwgeyB1c2VTdGF0ZSB9IGZyb20gXCJyZWFjdFwiO1xuaW1wb3J0IGNuIGZyb20gXCJjbGFzc25hbWVzXCI7XG5pbXBvcnQgY2xzIGZyb20gXCIuL3BhcnRuZXItdG9nZ2xlLWJ1dHRvbi1ibG9jay5tb2R1bGUuc2Nzc1wiO1xuaW1wb3J0IFBhcnRuZXJUb2dnbGVCdXR0b24gZnJvbSBcIi4vcGFydG5lci10b2dnbGUtYnV0dG9uXCI7XG5cbmludGVyZmFjZSBQYXJ0bmVyVG9nZ2xlQnV0dG9uQmxvY2tQcm9wcyB7XG4gIGxhYmVsTGVmdDogc3RyaW5nO1xuICBsYWJlbFJpZ2h0OiBzdHJpbmc7XG4gIG9uQ2xpY2tMZWZ0OiAoKSA9PiB2b2lkO1xuICBvbkNsaWNrUmlnaHQ6ICgpID0+IHZvaWQ7XG4gIGNsYXNzTmFtZT86IHN0cmluZztcbiAgaXNBY3RpdmU/OiBib29sZWFuO1xufVxuXG5jb25zdCBQYXJ0bmVyVG9nZ2xlQnV0dG9uQmxvY2sgPSAoe1xuICBsYWJlbExlZnQsXG4gIGxhYmVsUmlnaHQsXG4gIG9uQ2xpY2tMZWZ0LFxuICBvbkNsaWNrUmlnaHQsXG4gIGNsYXNzTmFtZSxcbiAgaXNBY3RpdmUgPSB0cnVlLFxufTogUGFydG5lclRvZ2dsZUJ1dHRvbkJsb2NrUHJvcHMpID0+IHtcbiAgY29uc3QgW2lzTGVmdEFjdGl2ZSwgc2V0SXNMZWZ0QWN0aXZlXSA9IHVzZVN0YXRlKGlzQWN0aXZlKTtcbiAgcmV0dXJuIChcbiAgICA8ZGl2IGNsYXNzTmFtZT17Y24oY2xzLndyYXBwZXIsIGNsYXNzTmFtZSl9PlxuICAgICAgPGRpdiBjbGFzc05hbWU9e2NuKGNscy50b2dnbGVfYnRuX3dyYXAsIFwidG9nZ2xlLWJ0bi13cmFwXCIpfT5cbiAgICAgICAgPFBhcnRuZXJUb2dnbGVCdXR0b25cbiAgICAgICAgICBsYWJlbD17bGFiZWxMZWZ0fVxuICAgICAgICAgIGFjdGl2ZT17aXNMZWZ0QWN0aXZlfVxuICAgICAgICAgIG9uQ2xpY2s9eygpID0+IHtcbiAgICAgICAgICAgIHNldElzTGVmdEFjdGl2ZSh0cnVlKTtcbiAgICAgICAgICAgIG9uQ2xpY2tMZWZ0KCk7XG4gICAgICAgICAgfX1cbiAgICAgICAgLz5cbiAgICAgICAgPFBhcnRuZXJUb2dnbGVCdXR0b25cbiAgICAgICAgICBsYWJlbD17bGFiZWxSaWdodH1cbiAgICAgICAgICBhY3RpdmU9eyFpc0xlZnRBY3RpdmV9XG4gICAgICAgICAgb25DbGljaz17KCkgPT4ge1xuICAgICAgICAgICAgc2V0SXNMZWZ0QWN0aXZlKGZhbHNlKTtcbiAgICAgICAgICAgIG9uQ2xpY2tSaWdodCgpO1xuICAgICAgICAgIH19XG4gICAgICAgIC8+XG4gICAgICA8L2Rpdj5cbiAgICAgIDxzdHlsZSBqc3g+e2BcbiAgICAgICAgLnRvZ2dsZS1idG4td3JhcDpob3ZlciB7XG4gICAgICAgICAgYm94LXNoYWRvdzogMHB4IDNweCAyMHB4IDBweCAjZmRkOGQwIGluc2V0O1xuICAgICAgICB9XG4gICAgICBgfTwvc3R5bGU+XG4gICAgPC9kaXY+XG4gICk7XG59O1xuXG5leHBvcnQgZGVmYXVsdCBQYXJ0bmVyVG9nZ2xlQnV0dG9uQmxvY2s7XG4iXX0= */\n/*@ sourceURL=partner-toggle-button-block.tsx */"));
11997
+ };
11998
+
11999
+ PartnerToggleButtonBlock.propTypes = {
12000
+ labelLeft: _pt.string.isRequired,
12001
+ labelRight: _pt.string.isRequired,
12002
+ onClickLeft: _pt.func.isRequired,
12003
+ onClickRight: _pt.func.isRequired,
12004
+ className: _pt.string,
12005
+ isActive: _pt.bool
12006
+ };
12007
+
12008
+ var lodash = createCommonjsModule(function (module, exports) {
12009
+ (function() {
12010
+
12011
+ /** Used as a safe reference for `undefined` in pre-ES5 environments. */
12012
+ var undefined$1;
12013
+
12014
+ /** Used as the semantic version number. */
12015
+ var VERSION = '4.17.15';
12016
+
12017
+ /** Used as the size to enable large array optimizations. */
12018
+ var LARGE_ARRAY_SIZE = 200;
12019
+
12020
+ /** Error message constants. */
12021
+ var CORE_ERROR_TEXT = 'Unsupported core-js use. Try https://npms.io/search?q=ponyfill.',
12022
+ FUNC_ERROR_TEXT = 'Expected a function';
12023
+
12024
+ /** Used to stand-in for `undefined` hash values. */
12025
+ var HASH_UNDEFINED = '__lodash_hash_undefined__';
12026
+
12027
+ /** Used as the maximum memoize cache size. */
12028
+ var MAX_MEMOIZE_SIZE = 500;
12029
+
12030
+ /** Used as the internal argument placeholder. */
12031
+ var PLACEHOLDER = '__lodash_placeholder__';
12032
+
12033
+ /** Used to compose bitmasks for cloning. */
12034
+ var CLONE_DEEP_FLAG = 1,
12035
+ CLONE_FLAT_FLAG = 2,
12036
+ CLONE_SYMBOLS_FLAG = 4;
12037
+
12038
+ /** Used to compose bitmasks for value comparisons. */
12039
+ var COMPARE_PARTIAL_FLAG = 1,
12040
+ COMPARE_UNORDERED_FLAG = 2;
12041
+
12042
+ /** Used to compose bitmasks for function metadata. */
12043
+ var WRAP_BIND_FLAG = 1,
12044
+ WRAP_BIND_KEY_FLAG = 2,
12045
+ WRAP_CURRY_BOUND_FLAG = 4,
12046
+ WRAP_CURRY_FLAG = 8,
12047
+ WRAP_CURRY_RIGHT_FLAG = 16,
12048
+ WRAP_PARTIAL_FLAG = 32,
12049
+ WRAP_PARTIAL_RIGHT_FLAG = 64,
12050
+ WRAP_ARY_FLAG = 128,
12051
+ WRAP_REARG_FLAG = 256,
12052
+ WRAP_FLIP_FLAG = 512;
12053
+
12054
+ /** Used as default options for `_.truncate`. */
12055
+ var DEFAULT_TRUNC_LENGTH = 30,
12056
+ DEFAULT_TRUNC_OMISSION = '...';
12057
+
12058
+ /** Used to detect hot functions by number of calls within a span of milliseconds. */
12059
+ var HOT_COUNT = 800,
12060
+ HOT_SPAN = 16;
12061
+
12062
+ /** Used to indicate the type of lazy iteratees. */
12063
+ var LAZY_FILTER_FLAG = 1,
12064
+ LAZY_MAP_FLAG = 2,
12065
+ LAZY_WHILE_FLAG = 3;
12066
+
12067
+ /** Used as references for various `Number` constants. */
12068
+ var INFINITY = 1 / 0,
12069
+ MAX_SAFE_INTEGER = 9007199254740991,
12070
+ MAX_INTEGER = 1.7976931348623157e+308,
12071
+ NAN = 0 / 0;
12072
+
12073
+ /** Used as references for the maximum length and index of an array. */
12074
+ var MAX_ARRAY_LENGTH = 4294967295,
12075
+ MAX_ARRAY_INDEX = MAX_ARRAY_LENGTH - 1,
12076
+ HALF_MAX_ARRAY_LENGTH = MAX_ARRAY_LENGTH >>> 1;
12077
+
12078
+ /** Used to associate wrap methods with their bit flags. */
12079
+ var wrapFlags = [
12080
+ ['ary', WRAP_ARY_FLAG],
12081
+ ['bind', WRAP_BIND_FLAG],
12082
+ ['bindKey', WRAP_BIND_KEY_FLAG],
12083
+ ['curry', WRAP_CURRY_FLAG],
12084
+ ['curryRight', WRAP_CURRY_RIGHT_FLAG],
12085
+ ['flip', WRAP_FLIP_FLAG],
12086
+ ['partial', WRAP_PARTIAL_FLAG],
12087
+ ['partialRight', WRAP_PARTIAL_RIGHT_FLAG],
12088
+ ['rearg', WRAP_REARG_FLAG]
12089
+ ];
11708
12090
 
11709
12091
  /** `Object#toString` result references. */
11710
12092
  var argsTag = '[object Arguments]',
@@ -28716,29 +29098,29 @@ var lodash = createCommonjsModule(function (module, exports) {
28716
29098
  }.call(commonjsGlobal));
28717
29099
  });
28718
29100
 
28719
- var css$e = ".footerV2-module_wrapper__3uNWh {\n background-color: white;\n color: #404041;\n font-family: \"Montserrat\", sans-serif; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_container__1Y8dv {\n width: 100%;\n margin: 0 auto;\n border-top: 1px solid #e2e2e2;\n border-bottom: 1px solid #e2e2e2; }\n .footerV2-module_wrapper__3uNWh section {\n max-width: 80em;\n display: flex;\n padding: 55px 0px 35px 0px;\n margin: 0 auto;\n flex-direction: row;\n justify-content: space-between; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_social_links__item__2RVAO {\n display: block;\n width: 2.5rem;\n height: 2.5rem; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_social_links__item__2RVAO img {\n width: 100%;\n height: 100%;\n display: block;\n -o-object-fit: \"contain\";\n object-fit: \"contain\"; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_logo__1BTb6 {\n width: 20%; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_logo__1BTb6 .footerV2-module_logo__3g-m- {\n width: 161px;\n height: 57px;\n margin-top: -5px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_left_bottom__8raKl {\n display: flex;\n justify-content: space-between;\n width: 100%;\n margin-top: 20px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_follow__2a4nL {\n width: 33.33%;\n padding: 0 10px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_follow__2a4nL h2 {\n color: black;\n font-size: 14px;\n font-weight: 500; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_social_icons__35Jsa {\n display: flex;\n flex-direction: row;\n grid-gap: 21px;\n grid-gap: 21px;\n gap: 21px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_follow_mobile__7raQo {\n display: none; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_left__2YuFf {\n display: flex;\n width: 60%;\n position: relative;\n min-height: 220px;\n flex-wrap: wrap; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_left_mobile__SovNW {\n display: none; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block__IYG2M .footerV2-module_statistics__DLKC3 {\n width: 25%;\n display: flex;\n flex-direction: column;\n align-items: center; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_statistics__DLKC3 .footerV2-module_container__1Y8dv {\n background-color: #f2f8f1;\n border-radius: 10px;\n width: 273px;\n height: 244px;\n text-align: center;\n padding: 5px 29px 27px 29px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block__IYG2M .footerV2-module_statistics__DLKC3 .footerV2-module_title__2Pfg4 {\n line-height: 16.8px;\n font-weight: 600;\n font-size: 14px;\n color: #0b1f05;\n text-align: left; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_statistics_number__1mbq9 {\n font-weight: 400;\n font-size: 14px;\n line-height: 19.6px;\n color: #13362e;\n text-align: left; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block__IYG2M .footerV2-module_statistics__DLKC3 > .footerV2-module_stack-column__13ufr > .footerV2-module_stack-row__3amp9 {\n flex-direction: column; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_statistics_item_container__2j6hR {\n display: flex;\n flex-direction: column; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block__IYG2M .footerV2-module_statistics_item__2zP8I {\n display: flex;\n flex-direction: row;\n align-items: center;\n grid-gap: 16px;\n grid-gap: 16px;\n gap: 16px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_statistics_item__2zP8I:last-child img {\n transform: scaleX(-1); }\n .footerV2-module_wrapper__3uNWh .footerV2-module_item_link__2CV5i {\n flex-basis: 33.33%;\n padding: 0 10px;\n display: block; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_item_link__2CV5i h2 {\n color: black;\n font-size: 14px;\n text-transform: lowercase;\n font-weight: 500; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_item_link__2CV5i h2:first-letter {\n text-transform: capitalize; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_list_links__Twf5H {\n display: flex;\n flex-direction: column; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_list_links__Twf5H a {\n color: #6d6d6d;\n text-decoration: none;\n margin: 0.5rem 0;\n font-size: 14px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_list_links__Twf5H a:first-letter {\n text-transform: capitalize; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_bottom_container__9ZuJh {\n width: 100%;\n max-width: 80em;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n padding-bottom: 25px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_bottom_section__HKRgY {\n flex-direction: column;\n padding: 1rem 10px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_bottom_section__HKRgY a {\n text-decoration: none;\n color: #404041;\n font-size: 13px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_bottom_section__HKRgY .footerV2-module_container__1Y8dv > div {\n align-items: center;\n justify-content: space-between; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_card__1x1JR {\n width: 65%;\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: flex-end;\n padding: 20px;\n background: linear-gradient(90deg, #e96a6d 0%, #e17221 100%), #2d8a75;\n cursor: pointer;\n border-radius: 6px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_card__1x1JR .footerV2-module_title__2Pfg4 {\n display: flex;\n flex-direction: column;\n font-weight: 500;\n font-size: 14px;\n line-height: 1.5em;\n text-align: left;\n color: white; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_card__1x1JR img {\n width: 16px;\n height: auto; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_card_mobile__3j68- {\n display: none; }\n @media all and (max-width: 1200px) {\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block__IYG2M {\n flex-wrap: wrap;\n width: 80%; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_logo__1BTb6 {\n flex-basis: 100%; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_left__2YuFf {\n width: 70%; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block__IYG2M .footerV2-module_statistics__DLKC3 {\n width: 30%; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_bottom_section__HKRgY {\n width: 80%; } }\n @media all and (max-width: 992px) {\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block__IYG2M {\n flex-direction: column;\n width: 80%; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_left__2YuFf {\n width: 100%; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block__IYG2M .footerV2-module_statistics__DLKC3 {\n width: 100%; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_statistics__DLKC3 .footerV2-module_container__1Y8dv {\n background-color: #f2f8f1;\n border-radius: 10px;\n width: 100%;\n height: 174px;\n padding: 25px;\n margin-top: 25px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block__IYG2M .footerV2-module_statistics__DLKC3 .footerV2-module_title__2Pfg4 {\n text-align: center; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_statistics_item_container__2j6hR {\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-evenly; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_statistics_item__2zP8I {\n flex-direction: column;\n grid-gap: 0px !important;\n grid-gap: 0px !important;\n gap: 0px !important; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_bottom_container__9ZuJh {\n flex-direction: column;\n grid-gap: 5px;\n grid-gap: 5px;\n gap: 5px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_statistics_number__1mbq9 {\n text-align: center;\n width: 70%; } }\n @media all and (max-width: 768px) {\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block__IYG2M {\n flex-direction: column;\n width: 432px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_follow_mobile__7raQo {\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n padding: 8px 0;\n border-bottom: solid 1px #dadada; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_social_icons_mobile__2MuTY {\n display: flex;\n flex-direction: row;\n grid-gap: 21px;\n grid-gap: 21px;\n gap: 21px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_follow_mobile__7raQo h2 {\n color: black;\n font-size: 14px;\n font-weight: 500; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_item_link__2CV5i h2 {\n font-weight: 500; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_left__2YuFf {\n display: none; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_left_mobile__SovNW {\n display: block; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_left_mobile__SovNW .footerV2-module_title_container__2J_BO {\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_left_mobile__SovNW .footerV2-module_item_link__2CV5i {\n border-bottom: solid 1px #dadada;\n padding: 8px 0; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_left_mobile__SovNW .footerV2-module_list_links__Twf5H {\n margin-left: 22px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_active__1jXbw {\n display: flex !important; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_inactive__2Qwod {\n display: none !important; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_logo__1BTb6 {\n width: 100%;\n border-bottom: solid 1px #dadada; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_statistics__DLKC3 .footerV2-module_container__1Y8dv {\n background-color: #f2f8f1;\n border-radius: 10px;\n width: 432px;\n height: 236px;\n padding: 25px;\n margin-top: 25px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_statistics_item_container__2j6hR {\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: space-evenly; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_statistics_item__2zP8I {\n flex-direction: row;\n width: 100%;\n grid-gap: 16px !important;\n grid-gap: 16px !important;\n gap: 16px !important; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_statistics_number__1mbq9 {\n text-align: left;\n width: 70%; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block__IYG2M .footerV2-module_statistics__DLKC3 .footerV2-module_title__2Pfg4 {\n text-align: left; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_card__1x1JR {\n width: 432px;\n padding: 25px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_card__1x1JR img {\n width: 12px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_card_mobile__3j68- {\n display: flex;\n justify-content: center;\n padding: 15px 0 50px 0; } }\n @media all and (max-width: 480px) {\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block__IYG2M {\n flex-direction: column;\n width: 340px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_statistics__DLKC3 .footerV2-module_container__1Y8dv {\n width: 340px;\n height: 236px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_bottom_container__9ZuJh {\n flex-direction: column-reverse; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_bottom_container__9ZuJh .footerV2-module_stack-row__3amp9:not(.footerV2-module_stack-reverse__20hel) > *:not(:last-child) {\n margin-right: 0.2rem !important; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_card__1x1JR {\n width: 340px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_bottom_section__HKRgY {\n width: 90%; } }\n";
28720
- var cls$e = {"wrapper":"footerV2-module_wrapper__3uNWh","container":"footerV2-module_container__1Y8dv","social_links__item":"footerV2-module_social_links__item__2RVAO","main_block_logo":"footerV2-module_main_block_logo__1BTb6","logo":"footerV2-module_logo__3g-m-","main_block_left_bottom":"footerV2-module_main_block_left_bottom__8raKl","main_block_follow":"footerV2-module_main_block_follow__2a4nL","social_icons":"footerV2-module_social_icons__35Jsa","main_block_follow_mobile":"footerV2-module_main_block_follow_mobile__7raQo","main_block_left":"footerV2-module_main_block_left__2YuFf","main_block_left_mobile":"footerV2-module_main_block_left_mobile__SovNW","main_block":"footerV2-module_main_block__IYG2M","statistics":"footerV2-module_statistics__DLKC3","title":"footerV2-module_title__2Pfg4","statistics_number":"footerV2-module_statistics_number__1mbq9","stack-column":"footerV2-module_stack-column__13ufr","stack-row":"footerV2-module_stack-row__3amp9","statistics_item_container":"footerV2-module_statistics_item_container__2j6hR","statistics_item":"footerV2-module_statistics_item__2zP8I","item_link":"footerV2-module_item_link__2CV5i","list_links":"footerV2-module_list_links__Twf5H","bottom_container":"footerV2-module_bottom_container__9ZuJh","bottom_section":"footerV2-module_bottom_section__HKRgY","main_block_card":"footerV2-module_main_block_card__1x1JR","main_block_card_mobile":"footerV2-module_main_block_card_mobile__3j68-","social_icons_mobile":"footerV2-module_social_icons_mobile__2MuTY","title_container":"footerV2-module_title_container__2J_BO","active":"footerV2-module_active__1jXbw","inactive":"footerV2-module_inactive__2Qwod","stack-reverse":"footerV2-module_stack-reverse__20hel"};
28721
- styleInject(css$e);
29101
+ var css$m = ".footerV2-module_wrapper__3uNWh {\n background-color: white;\n color: #404041;\n font-family: \"Montserrat\", sans-serif; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_container__1Y8dv {\n width: 100%;\n margin: 0 auto;\n border-top: 1px solid #e2e2e2;\n border-bottom: 1px solid #e2e2e2; }\n .footerV2-module_wrapper__3uNWh section {\n max-width: 80em;\n display: flex;\n padding: 55px 0px 35px 0px;\n margin: 0 auto;\n flex-direction: row;\n justify-content: space-between; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_social_links__item__2RVAO {\n display: block;\n width: 2.5rem;\n height: 2.5rem; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_social_links__item__2RVAO img {\n width: 100%;\n height: 100%;\n display: block;\n -o-object-fit: \"contain\";\n object-fit: \"contain\"; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_logo__1BTb6 {\n width: 20%; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_logo__1BTb6 .footerV2-module_logo__3g-m- {\n width: 161px;\n height: 57px;\n margin-top: -5px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_left_bottom__8raKl {\n display: flex;\n justify-content: space-between;\n width: 100%;\n margin-top: 20px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_follow__2a4nL {\n width: 33.33%;\n padding: 0 10px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_follow__2a4nL h2 {\n color: black;\n font-size: 14px;\n font-weight: 500; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_social_icons__35Jsa {\n display: flex;\n flex-direction: row;\n grid-gap: 21px;\n grid-gap: 21px;\n gap: 21px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_follow_mobile__7raQo {\n display: none; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_left__2YuFf {\n display: flex;\n width: 60%;\n position: relative;\n min-height: 220px;\n flex-wrap: wrap; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_left_mobile__SovNW {\n display: none; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block__IYG2M .footerV2-module_statistics__DLKC3 {\n width: 25%;\n display: flex;\n flex-direction: column;\n align-items: center; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_statistics__DLKC3 .footerV2-module_container__1Y8dv {\n background-color: #f2f8f1;\n border-radius: 10px;\n width: 273px;\n height: 244px;\n text-align: center;\n padding: 5px 29px 27px 29px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block__IYG2M .footerV2-module_statistics__DLKC3 .footerV2-module_title__2Pfg4 {\n line-height: 16.8px;\n font-weight: 600;\n font-size: 14px;\n color: #0b1f05;\n text-align: left; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_statistics_number__1mbq9 {\n font-weight: 400;\n font-size: 14px;\n line-height: 19.6px;\n color: #13362e;\n text-align: left; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block__IYG2M .footerV2-module_statistics__DLKC3 > .footerV2-module_stack-column__13ufr > .footerV2-module_stack-row__3amp9 {\n flex-direction: column; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_statistics_item_container__2j6hR {\n display: flex;\n flex-direction: column; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block__IYG2M .footerV2-module_statistics_item__2zP8I {\n display: flex;\n flex-direction: row;\n align-items: center;\n grid-gap: 16px;\n grid-gap: 16px;\n gap: 16px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_statistics_item__2zP8I:last-child img {\n transform: scaleX(-1); }\n .footerV2-module_wrapper__3uNWh .footerV2-module_item_link__2CV5i {\n flex-basis: 33.33%;\n padding: 0 10px;\n display: block; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_item_link__2CV5i h2 {\n color: black;\n font-size: 14px;\n text-transform: lowercase;\n font-weight: 500; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_item_link__2CV5i h2:first-letter {\n text-transform: capitalize; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_list_links__Twf5H {\n display: flex;\n flex-direction: column; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_list_links__Twf5H a {\n color: #6d6d6d;\n text-decoration: none;\n margin: 0.5rem 0;\n font-size: 14px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_list_links__Twf5H a:first-letter {\n text-transform: capitalize; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_bottom_container__9ZuJh {\n width: 100%;\n max-width: 80em;\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n padding-bottom: 25px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_bottom_section__HKRgY {\n flex-direction: column;\n padding: 1rem 10px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_bottom_section__HKRgY a {\n text-decoration: none;\n color: #404041;\n font-size: 13px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_bottom_section__HKRgY .footerV2-module_container__1Y8dv > div {\n align-items: center;\n justify-content: space-between; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_card__1x1JR {\n width: 65%;\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: flex-end;\n padding: 20px;\n background: linear-gradient(90deg, #e96a6d 0%, #e17221 100%), #2d8a75;\n cursor: pointer;\n border-radius: 6px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_card__1x1JR .footerV2-module_title__2Pfg4 {\n display: flex;\n flex-direction: column;\n font-weight: 500;\n font-size: 14px;\n line-height: 1.5em;\n text-align: left;\n color: white; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_card__1x1JR img {\n width: 16px;\n height: auto; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_card_mobile__3j68- {\n display: none; }\n @media all and (max-width: 1200px) {\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block__IYG2M {\n flex-wrap: wrap;\n width: 80%; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_logo__1BTb6 {\n flex-basis: 100%; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_left__2YuFf {\n width: 70%; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block__IYG2M .footerV2-module_statistics__DLKC3 {\n width: 30%; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_bottom_section__HKRgY {\n width: 80%; } }\n @media all and (max-width: 992px) {\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block__IYG2M {\n flex-direction: column;\n width: 80%; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_left__2YuFf {\n width: 100%; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block__IYG2M .footerV2-module_statistics__DLKC3 {\n width: 100%; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_statistics__DLKC3 .footerV2-module_container__1Y8dv {\n background-color: #f2f8f1;\n border-radius: 10px;\n width: 100%;\n height: 174px;\n padding: 25px;\n margin-top: 25px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block__IYG2M .footerV2-module_statistics__DLKC3 .footerV2-module_title__2Pfg4 {\n text-align: center; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_statistics_item_container__2j6hR {\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-evenly; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_statistics_item__2zP8I {\n flex-direction: column;\n grid-gap: 0px !important;\n grid-gap: 0px !important;\n gap: 0px !important; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_bottom_container__9ZuJh {\n flex-direction: column;\n grid-gap: 5px;\n grid-gap: 5px;\n gap: 5px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_statistics_number__1mbq9 {\n text-align: center;\n width: 70%; } }\n @media all and (max-width: 768px) {\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block__IYG2M {\n flex-direction: column;\n width: 432px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_follow_mobile__7raQo {\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n padding: 8px 0;\n border-bottom: solid 1px #dadada; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_social_icons_mobile__2MuTY {\n display: flex;\n flex-direction: row;\n grid-gap: 21px;\n grid-gap: 21px;\n gap: 21px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_follow_mobile__7raQo h2 {\n color: black;\n font-size: 14px;\n font-weight: 500; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_item_link__2CV5i h2 {\n font-weight: 500; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_left__2YuFf {\n display: none; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_left_mobile__SovNW {\n display: block; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_left_mobile__SovNW .footerV2-module_title_container__2J_BO {\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_left_mobile__SovNW .footerV2-module_item_link__2CV5i {\n border-bottom: solid 1px #dadada;\n padding: 8px 0; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_left_mobile__SovNW .footerV2-module_list_links__Twf5H {\n margin-left: 22px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_active__1jXbw {\n display: flex !important; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_inactive__2Qwod {\n display: none !important; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_logo__1BTb6 {\n width: 100%;\n border-bottom: solid 1px #dadada; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_statistics__DLKC3 .footerV2-module_container__1Y8dv {\n background-color: #f2f8f1;\n border-radius: 10px;\n width: 432px;\n height: 236px;\n padding: 25px;\n margin-top: 25px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_statistics_item_container__2j6hR {\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: space-evenly; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_statistics_item__2zP8I {\n flex-direction: row;\n width: 100%;\n grid-gap: 16px !important;\n grid-gap: 16px !important;\n gap: 16px !important; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_statistics_number__1mbq9 {\n text-align: left;\n width: 70%; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block__IYG2M .footerV2-module_statistics__DLKC3 .footerV2-module_title__2Pfg4 {\n text-align: left; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_card__1x1JR {\n width: 432px;\n padding: 25px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_card__1x1JR img {\n width: 12px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_card_mobile__3j68- {\n display: flex;\n justify-content: center;\n padding: 15px 0 50px 0; } }\n @media all and (max-width: 480px) {\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block__IYG2M {\n flex-direction: column;\n width: 340px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_statistics__DLKC3 .footerV2-module_container__1Y8dv {\n width: 340px;\n height: 236px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_bottom_container__9ZuJh {\n flex-direction: column-reverse; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_bottom_container__9ZuJh .footerV2-module_stack-row__3amp9:not(.footerV2-module_stack-reverse__20hel) > *:not(:last-child) {\n margin-right: 0.2rem !important; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_main_block_card__1x1JR {\n width: 340px; }\n .footerV2-module_wrapper__3uNWh .footerV2-module_bottom_section__HKRgY {\n width: 90%; } }\n";
29102
+ var cls$m = {"wrapper":"footerV2-module_wrapper__3uNWh","container":"footerV2-module_container__1Y8dv","social_links__item":"footerV2-module_social_links__item__2RVAO","main_block_logo":"footerV2-module_main_block_logo__1BTb6","logo":"footerV2-module_logo__3g-m-","main_block_left_bottom":"footerV2-module_main_block_left_bottom__8raKl","main_block_follow":"footerV2-module_main_block_follow__2a4nL","social_icons":"footerV2-module_social_icons__35Jsa","main_block_follow_mobile":"footerV2-module_main_block_follow_mobile__7raQo","main_block_left":"footerV2-module_main_block_left__2YuFf","main_block_left_mobile":"footerV2-module_main_block_left_mobile__SovNW","main_block":"footerV2-module_main_block__IYG2M","statistics":"footerV2-module_statistics__DLKC3","title":"footerV2-module_title__2Pfg4","statistics_number":"footerV2-module_statistics_number__1mbq9","stack-column":"footerV2-module_stack-column__13ufr","stack-row":"footerV2-module_stack-row__3amp9","statistics_item_container":"footerV2-module_statistics_item_container__2j6hR","statistics_item":"footerV2-module_statistics_item__2zP8I","item_link":"footerV2-module_item_link__2CV5i","list_links":"footerV2-module_list_links__Twf5H","bottom_container":"footerV2-module_bottom_container__9ZuJh","bottom_section":"footerV2-module_bottom_section__HKRgY","main_block_card":"footerV2-module_main_block_card__1x1JR","main_block_card_mobile":"footerV2-module_main_block_card_mobile__3j68-","social_icons_mobile":"footerV2-module_social_icons_mobile__2MuTY","title_container":"footerV2-module_title_container__2J_BO","active":"footerV2-module_active__1jXbw","inactive":"footerV2-module_inactive__2Qwod","stack-reverse":"footerV2-module_stack-reverse__20hel"};
29103
+ styleInject(css$m);
28722
29104
 
28723
- const img$8 = "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 617 179'%3e%3cdefs/%3e%3cpath fill='%2342ccae' d='M210.2 88.2v25.3h-9.9V66.7h9.9v8.5c1.4-2.9 3.5-5.1 6.4-6.8 2.8-1.6 5.9-2.5 9.2-2.5 7.4 0 12.4 3.1 15 9.1 4.6-6.1 10.4-9.1 17.3-9.1 5.3 0 9.5 1.6 12.8 4.8 3.3 3.2 4.9 7.9 4.9 14v28.7H266V87.9c0-8.6-3.6-12.9-10.7-12.9-3.3 0-6.3 1.1-8.8 3.2-2.5 2.1-3.8 5.3-3.9 9.4v26h-9.9V87.9c0-4.5-.8-7.7-2.4-9.8-1.6-2.1-4.1-3.1-7.5-3.1-3.4 0-6.4 1.1-8.9 3.4-2.4 2.2-3.7 5.5-3.7 9.8M303.7 123.2c8.7 0 13-5.5 13-16.5v-2.9c-3.9 4-8.9 6.1-15 6.1-12.1 0-18.2-6.7-18.2-20v-23h9.9v18.6c0 5.5.8 9.3 2.5 11.6 1.7 2.3 4.5 3.4 8.6 3.4s7.1-1 8.9-3.1c1.9-2.1 3-5.2 3.3-9.5V66.7h9.9v40.2c0 8.2-2.1 14.4-6.4 18.7-4.3 4.3-9.8 6.5-16.5 6.5-5.2 0-9.7-1.2-13.6-3.7-3.9-2.5-6.7-6-8.5-10.6l8.9-3.8c2.3 6.2 6.7 9.2 13.2 9.2'/%3e%3cpath fill='%233e3e3f' d='M358.3 114.3c-6.5 0-12.1-2.2-16.8-6.6-4.7-4.4-7-10.2-7-17.4 0-7.2 2.5-13 7.3-17.5 4.9-4.5 10.9-6.7 17.9-6.7 7 0 13 2.4 17.9 7.3l-5.8 7.1c-4-3.5-8.1-5.3-12.2-5.3s-7.7 1.4-10.7 4.1c-3 2.7-4.5 6.2-4.5 10.6 0 4.3 1.5 8 4.5 11s6.7 4.5 11 4.5c4.4 0 8.5-2 12.4-6l5.8 6.3c-5.8 5.7-12.4 8.6-19.8 8.6M388.3 107.6c-4.4-4.5-6.6-10.3-6.6-17.6 0-7.3 2.3-13.1 6.8-17.4 4.5-4.3 9.9-6.5 16-6.5 6.2 0 11.2 2.9 15.2 8.8v-8.1h9.9v46.8h-9.9v-7.7c-1.9 2.7-4.3 4.8-7.2 6.2-2.9 1.4-5.8 2.2-8.8 2.2-5.9 0-11-2.3-15.4-6.7m3.2-17.2c0 4.5 1.4 8.1 4.3 11 2.9 2.8 6.2 4.2 10.1 4.2 3.9 0 7.2-1.4 9.9-4.3 2.7-2.8 4.1-6.5 4.1-11s-1.4-8.2-4.1-11.2c-2.7-3-6-4.5-9.9-4.5-3.9 0-7.3 1.5-10.1 4.5-2.9 3-4.3 6.8-4.3 11.3M471.2 92.1V66.7h9.9v46.8h-9.9V105c-1.6 2.9-3.8 5.1-6.6 6.8-2.8 1.6-5.8 2.5-9 2.5-5.3 0-9.5-1.6-12.8-4.8-3.3-3.2-4.9-7.9-4.9-14V66.7h9.9v25.7c0 8.6 3.6 12.9 10.7 12.9 3.4 0 6.4-1.1 8.9-3.4 2.6-2.2 3.8-5.5 3.8-9.8M525.1 99.6c0 4.5-1.6 8-4.8 10.7-3.2 2.7-7.4 4-12.4 4-3.4 0-6.9-.6-10.6-1.8-3.7-1.2-6.9-3-9.7-5.2l4.8-7.7c5.5 4.1 10.7 6.2 15.8 6.2 2.2 0 4-.5 5.3-1.5 1.3-1 1.9-2.3 1.9-3.9 0-2.3-3.1-4.5-9.3-6.3-.5-.2-.8-.3-1.1-.4-9.7-2.6-14.6-7-14.6-13.2 0-4.3 1.7-7.8 5.1-10.4 3.4-2.6 7.8-3.9 13.2-3.9 5.4 0 10.5 1.6 15.3 4.8l-3.7 7.3c-3.8-2.5-7.9-3.8-12.4-3.8-2.3 0-4.3.4-5.7 1.3-1.5.9-2.2 2.1-2.2 3.8 0 1.5.8 2.6 2.3 3.3 1.1.5 2.5 1 4.4 1.5 1.9.5 3.6.9 5.1 1.4 1.5.5 2.9 1 4.3 1.6 1.4.6 2.9 1.4 4.4 2.5 3.1 1.9 4.6 5.2 4.6 9.7M552.3 66c6.4 0 11.7 1.8 15.9 5.3 4.2 3.6 6.4 8.2 6.4 13.9l.1.2-34.1 14.3c3 3.8 7.2 5.6 12.4 5.6s9.6-2.1 13-6.2l5.8 6.4c-5.6 5.7-12.1 8.6-19.7 8.6-6.6 0-12.3-2.2-17.1-6.6-4.7-4.4-7.1-10.2-7.1-17.4 0-5 1.2-9.4 3.7-13.2 2.5-3.8 5.5-6.6 9.2-8.4 3.6-1.6 7.5-2.5 11.5-2.5m-14.9 24.4c0 .8 0 1.3.1 1.7l26-11.2c-2-3.9-5.5-5.8-10.6-5.8-3.9 0-7.4 1.3-10.6 4-3.3 2.8-4.9 6.5-4.9 11.3'/%3e%3cpath fill='%2342ccae' d='M136.1 120.4c-1.2-1.2-1.2-3.1 0-4.3 1.2-1.2 3.1-1.2 4.3 0l22.3 22.3c1.3-1.4 2.5-2.9 3.6-4.5L144.4 112c-1.2-1.2-1.2-3.1 0-4.3 1.2-1.2 3.1-1.2 4.3 0l21 21c6.8-11.1 10.7-24.1 10.8-38.1.1-40.4-32.6-73.3-73-73.3-40.4-.1-73.3 32.6-73.3 73 0 13.8 3.8 26.8 10.4 37.8L89 83.7c4.1-4.1 4.1-10.7 0-14.8-4.1-4.1-10.7-4.1-14.8 0-2 2-3.1 4.6-3.1 7.4s1.1 5.4 3.1 7.4l3.4 3.4c1.2 1.2 1.2 3.1 0 4.3-1.2 1.2-3.1 1.2-4.3 0L69.9 88c-3.1-3.1-4.8-7.3-4.8-11.7 0-4.4 1.7-8.6 4.8-11.7 6.5-6.5 17-6.5 23.4 0 6.5 6.5 6.5 17 0 23.4L48 133.4c1.1 1.5 2.3 3 3.5 4.4L97.2 92c8.7-8.7 8.7-22.7 0-31.4-4.2-4.2-9.8-6.5-15.7-6.5-5.9 0-11.5 2.3-15.7 6.5-4.2 4.2-6.5 9.8-6.5 15.7 0 5.9 2.3 11.5 6.5 15.7l3.3 3.3c1.2 1.2 1.2 3.1 0 4.3-1.2 1.2-3.1 1.2-4.3 0l-3.3-3.3c-5.3-5.3-8.3-12.4-8.3-20s2.9-14.7 8.3-20c5.3-5.3 12.4-8.3 20-8.3s14.7 2.9 20 8.3c2.2 2.2 3.9 4.7 5.2 7.3 1.3-2.7 3.1-5.1 5.3-7.3 11-11 29-11 40 0 5.3 5.3 8.3 12.5 8.3 20 0 7.6-2.9 14.7-8.3 20l-42.5 42.5c-.2.2-.5.4-.7.5 0 0 0 .1-.1.1-.6.6-1.4.9-2.2.9-.8 0-1.6-.3-2.2-.9l-19-19c-1.2-1.2-1.2-3.1 0-4.3 1.2-1.2 3.1-1.2 4.3 0l16.9 16.9 41-41c4.2-4.2 6.5-9.8 6.5-15.7 0-5.9-2.3-11.5-6.5-15.7-8.7-8.7-22.7-8.7-31.4 0-4.2 4.2-6.5 9.8-6.5 15.7 0 5.9 2.3 11.5 6.5 15.7l3.3 3.3c1.2 1.2 1.2 3.1 0 4.3-1.2 1.2-3.1 1.2-4.3 0l-3.3-3.3c-2.2-2.2-3.9-4.6-5.3-7.3-1.3 2.6-3.1 5.1-5.2 7.3l-45.9 45.9c13.2 13.2 31.4 21.3 51.5 21.4 20 0 38.1-7.9 51.3-20.9l-22.1-22.3zm-42.2-12.7c1.2-1.2 3.1-1.2 4.3 0l8.7 8.7 32.7-32.7c4.1-4.1 4.1-10.7 0-14.8-2-2-4.6-3.1-7.4-3.1-2.8 0-5.4 1.1-7.4 3.1-4.1 4.1-4.1 10.7 0 14.8l3.4 3.4c1.2 1.2 1.2 3.1 0 4.3-1.2 1.2-3.1 1.2-4.3 0l-3.4-3.4c-6.5-6.5-6.5-17 0-23.4 3.1-3.1 7.3-4.8 11.7-4.8 4.4 0 8.6 1.7 11.7 4.8 6.5 6.5 6.5 17 0 23.4l-34.6 34.6c-.6.6-1.4.9-2.2.9h-.4c-.8 0-1.6-.3-2.2-.9L93.9 112c-1.2-1.1-1.2-3.1 0-4.3'/%3e%3c/svg%3e";
29105
+ const img$9 = "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 617 179'%3e%3cdefs/%3e%3cpath fill='%2342ccae' d='M210.2 88.2v25.3h-9.9V66.7h9.9v8.5c1.4-2.9 3.5-5.1 6.4-6.8 2.8-1.6 5.9-2.5 9.2-2.5 7.4 0 12.4 3.1 15 9.1 4.6-6.1 10.4-9.1 17.3-9.1 5.3 0 9.5 1.6 12.8 4.8 3.3 3.2 4.9 7.9 4.9 14v28.7H266V87.9c0-8.6-3.6-12.9-10.7-12.9-3.3 0-6.3 1.1-8.8 3.2-2.5 2.1-3.8 5.3-3.9 9.4v26h-9.9V87.9c0-4.5-.8-7.7-2.4-9.8-1.6-2.1-4.1-3.1-7.5-3.1-3.4 0-6.4 1.1-8.9 3.4-2.4 2.2-3.7 5.5-3.7 9.8M303.7 123.2c8.7 0 13-5.5 13-16.5v-2.9c-3.9 4-8.9 6.1-15 6.1-12.1 0-18.2-6.7-18.2-20v-23h9.9v18.6c0 5.5.8 9.3 2.5 11.6 1.7 2.3 4.5 3.4 8.6 3.4s7.1-1 8.9-3.1c1.9-2.1 3-5.2 3.3-9.5V66.7h9.9v40.2c0 8.2-2.1 14.4-6.4 18.7-4.3 4.3-9.8 6.5-16.5 6.5-5.2 0-9.7-1.2-13.6-3.7-3.9-2.5-6.7-6-8.5-10.6l8.9-3.8c2.3 6.2 6.7 9.2 13.2 9.2'/%3e%3cpath fill='%233e3e3f' d='M358.3 114.3c-6.5 0-12.1-2.2-16.8-6.6-4.7-4.4-7-10.2-7-17.4 0-7.2 2.5-13 7.3-17.5 4.9-4.5 10.9-6.7 17.9-6.7 7 0 13 2.4 17.9 7.3l-5.8 7.1c-4-3.5-8.1-5.3-12.2-5.3s-7.7 1.4-10.7 4.1c-3 2.7-4.5 6.2-4.5 10.6 0 4.3 1.5 8 4.5 11s6.7 4.5 11 4.5c4.4 0 8.5-2 12.4-6l5.8 6.3c-5.8 5.7-12.4 8.6-19.8 8.6M388.3 107.6c-4.4-4.5-6.6-10.3-6.6-17.6 0-7.3 2.3-13.1 6.8-17.4 4.5-4.3 9.9-6.5 16-6.5 6.2 0 11.2 2.9 15.2 8.8v-8.1h9.9v46.8h-9.9v-7.7c-1.9 2.7-4.3 4.8-7.2 6.2-2.9 1.4-5.8 2.2-8.8 2.2-5.9 0-11-2.3-15.4-6.7m3.2-17.2c0 4.5 1.4 8.1 4.3 11 2.9 2.8 6.2 4.2 10.1 4.2 3.9 0 7.2-1.4 9.9-4.3 2.7-2.8 4.1-6.5 4.1-11s-1.4-8.2-4.1-11.2c-2.7-3-6-4.5-9.9-4.5-3.9 0-7.3 1.5-10.1 4.5-2.9 3-4.3 6.8-4.3 11.3M471.2 92.1V66.7h9.9v46.8h-9.9V105c-1.6 2.9-3.8 5.1-6.6 6.8-2.8 1.6-5.8 2.5-9 2.5-5.3 0-9.5-1.6-12.8-4.8-3.3-3.2-4.9-7.9-4.9-14V66.7h9.9v25.7c0 8.6 3.6 12.9 10.7 12.9 3.4 0 6.4-1.1 8.9-3.4 2.6-2.2 3.8-5.5 3.8-9.8M525.1 99.6c0 4.5-1.6 8-4.8 10.7-3.2 2.7-7.4 4-12.4 4-3.4 0-6.9-.6-10.6-1.8-3.7-1.2-6.9-3-9.7-5.2l4.8-7.7c5.5 4.1 10.7 6.2 15.8 6.2 2.2 0 4-.5 5.3-1.5 1.3-1 1.9-2.3 1.9-3.9 0-2.3-3.1-4.5-9.3-6.3-.5-.2-.8-.3-1.1-.4-9.7-2.6-14.6-7-14.6-13.2 0-4.3 1.7-7.8 5.1-10.4 3.4-2.6 7.8-3.9 13.2-3.9 5.4 0 10.5 1.6 15.3 4.8l-3.7 7.3c-3.8-2.5-7.9-3.8-12.4-3.8-2.3 0-4.3.4-5.7 1.3-1.5.9-2.2 2.1-2.2 3.8 0 1.5.8 2.6 2.3 3.3 1.1.5 2.5 1 4.4 1.5 1.9.5 3.6.9 5.1 1.4 1.5.5 2.9 1 4.3 1.6 1.4.6 2.9 1.4 4.4 2.5 3.1 1.9 4.6 5.2 4.6 9.7M552.3 66c6.4 0 11.7 1.8 15.9 5.3 4.2 3.6 6.4 8.2 6.4 13.9l.1.2-34.1 14.3c3 3.8 7.2 5.6 12.4 5.6s9.6-2.1 13-6.2l5.8 6.4c-5.6 5.7-12.1 8.6-19.7 8.6-6.6 0-12.3-2.2-17.1-6.6-4.7-4.4-7.1-10.2-7.1-17.4 0-5 1.2-9.4 3.7-13.2 2.5-3.8 5.5-6.6 9.2-8.4 3.6-1.6 7.5-2.5 11.5-2.5m-14.9 24.4c0 .8 0 1.3.1 1.7l26-11.2c-2-3.9-5.5-5.8-10.6-5.8-3.9 0-7.4 1.3-10.6 4-3.3 2.8-4.9 6.5-4.9 11.3'/%3e%3cpath fill='%2342ccae' d='M136.1 120.4c-1.2-1.2-1.2-3.1 0-4.3 1.2-1.2 3.1-1.2 4.3 0l22.3 22.3c1.3-1.4 2.5-2.9 3.6-4.5L144.4 112c-1.2-1.2-1.2-3.1 0-4.3 1.2-1.2 3.1-1.2 4.3 0l21 21c6.8-11.1 10.7-24.1 10.8-38.1.1-40.4-32.6-73.3-73-73.3-40.4-.1-73.3 32.6-73.3 73 0 13.8 3.8 26.8 10.4 37.8L89 83.7c4.1-4.1 4.1-10.7 0-14.8-4.1-4.1-10.7-4.1-14.8 0-2 2-3.1 4.6-3.1 7.4s1.1 5.4 3.1 7.4l3.4 3.4c1.2 1.2 1.2 3.1 0 4.3-1.2 1.2-3.1 1.2-4.3 0L69.9 88c-3.1-3.1-4.8-7.3-4.8-11.7 0-4.4 1.7-8.6 4.8-11.7 6.5-6.5 17-6.5 23.4 0 6.5 6.5 6.5 17 0 23.4L48 133.4c1.1 1.5 2.3 3 3.5 4.4L97.2 92c8.7-8.7 8.7-22.7 0-31.4-4.2-4.2-9.8-6.5-15.7-6.5-5.9 0-11.5 2.3-15.7 6.5-4.2 4.2-6.5 9.8-6.5 15.7 0 5.9 2.3 11.5 6.5 15.7l3.3 3.3c1.2 1.2 1.2 3.1 0 4.3-1.2 1.2-3.1 1.2-4.3 0l-3.3-3.3c-5.3-5.3-8.3-12.4-8.3-20s2.9-14.7 8.3-20c5.3-5.3 12.4-8.3 20-8.3s14.7 2.9 20 8.3c2.2 2.2 3.9 4.7 5.2 7.3 1.3-2.7 3.1-5.1 5.3-7.3 11-11 29-11 40 0 5.3 5.3 8.3 12.5 8.3 20 0 7.6-2.9 14.7-8.3 20l-42.5 42.5c-.2.2-.5.4-.7.5 0 0 0 .1-.1.1-.6.6-1.4.9-2.2.9-.8 0-1.6-.3-2.2-.9l-19-19c-1.2-1.2-1.2-3.1 0-4.3 1.2-1.2 3.1-1.2 4.3 0l16.9 16.9 41-41c4.2-4.2 6.5-9.8 6.5-15.7 0-5.9-2.3-11.5-6.5-15.7-8.7-8.7-22.7-8.7-31.4 0-4.2 4.2-6.5 9.8-6.5 15.7 0 5.9 2.3 11.5 6.5 15.7l3.3 3.3c1.2 1.2 1.2 3.1 0 4.3-1.2 1.2-3.1 1.2-4.3 0l-3.3-3.3c-2.2-2.2-3.9-4.6-5.3-7.3-1.3 2.6-3.1 5.1-5.2 7.3l-45.9 45.9c13.2 13.2 31.4 21.3 51.5 21.4 20 0 38.1-7.9 51.3-20.9l-22.1-22.3zm-42.2-12.7c1.2-1.2 3.1-1.2 4.3 0l8.7 8.7 32.7-32.7c4.1-4.1 4.1-10.7 0-14.8-2-2-4.6-3.1-7.4-3.1-2.8 0-5.4 1.1-7.4 3.1-4.1 4.1-4.1 10.7 0 14.8l3.4 3.4c1.2 1.2 1.2 3.1 0 4.3-1.2 1.2-3.1 1.2-4.3 0l-3.4-3.4c-6.5-6.5-6.5-17 0-23.4 3.1-3.1 7.3-4.8 11.7-4.8 4.4 0 8.6 1.7 11.7 4.8 6.5 6.5 6.5 17 0 23.4l-34.6 34.6c-.6.6-1.4.9-2.2.9h-.4c-.8 0-1.6-.3-2.2-.9L93.9 112c-1.2-1.1-1.2-3.1 0-4.3'/%3e%3c/svg%3e";
28724
29106
 
28725
- const img$9 = "data:image/svg+xml,%3csvg width='25' height='27' viewBox='0 0 25 27' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M24 6.72917V21.8333C24 24.125 22.1182 26 19.8182 26H12.1864C11.0573 26 9.99091 25.5521 9.20682 24.7604L1 16.4479C1 16.4479 2.31727 15.1667 2.35909 15.1458C2.58909 14.9479 2.87136 14.8437 3.185 14.8437C3.415 14.8437 3.62409 14.9062 3.81227 15.0104C3.85409 15.0208 8.31818 17.5729 8.31818 17.5729V5.16667C8.31818 4.30208 9.01864 3.60417 9.88636 3.60417C10.7541 3.60417 11.4545 4.30208 11.4545 5.16667V12.4583H12.5V2.5625C12.5 1.69792 13.2005 1 14.0682 1C14.9359 1 15.6364 1.69792 15.6364 2.5625V12.4583H16.6818V3.60417C16.6818 2.73958 17.3823 2.04167 18.25 2.04167C19.1177 2.04167 19.8182 2.73958 19.8182 3.60417V12.4583H20.8636V6.72917C20.8636 5.86458 21.5641 5.16667 22.4318 5.16667C23.2995 5.16667 24 5.86458 24 6.72917Z' stroke='%23469885'/%3e%3c/svg%3e";
29107
+ const img$a = "data:image/svg+xml,%3csvg width='25' height='27' viewBox='0 0 25 27' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M24 6.72917V21.8333C24 24.125 22.1182 26 19.8182 26H12.1864C11.0573 26 9.99091 25.5521 9.20682 24.7604L1 16.4479C1 16.4479 2.31727 15.1667 2.35909 15.1458C2.58909 14.9479 2.87136 14.8437 3.185 14.8437C3.415 14.8437 3.62409 14.9062 3.81227 15.0104C3.85409 15.0208 8.31818 17.5729 8.31818 17.5729V5.16667C8.31818 4.30208 9.01864 3.60417 9.88636 3.60417C10.7541 3.60417 11.4545 4.30208 11.4545 5.16667V12.4583H12.5V2.5625C12.5 1.69792 13.2005 1 14.0682 1C14.9359 1 15.6364 1.69792 15.6364 2.5625V12.4583H16.6818V3.60417C16.6818 2.73958 17.3823 2.04167 18.25 2.04167C19.1177 2.04167 19.8182 2.73958 19.8182 3.60417V12.4583H20.8636V6.72917C20.8636 5.86458 21.5641 5.16667 22.4318 5.16667C23.2995 5.16667 24 5.86458 24 6.72917Z' stroke='%23469885'/%3e%3c/svg%3e";
28726
29108
 
28727
- const img$a = "data:image/svg+xml,%3csvg width='33' height='22' viewBox='0 0 33 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M22.1364 9.57143C24.4684 9.57143 26.3495 7.65 26.3495 5.28571C26.3495 2.92143 24.4684 1 22.1364 1C19.8043 1 17.9091 2.92143 17.9091 5.28571C17.9091 7.65 19.8043 9.57143 22.1364 9.57143ZM10.8636 9.57143C13.1957 9.57143 15.0768 7.65 15.0768 5.28571C15.0768 2.92143 13.1957 1 10.8636 1C8.53159 1 6.63636 2.92143 6.63636 5.28571C6.63636 7.65 8.53159 9.57143 10.8636 9.57143ZM10.8636 12.4286C7.57341 12.4286 1 14.1 1 17.4286V21H20.7273V17.4286C20.7273 14.1 14.1539 12.4286 10.8636 12.4286ZM22.1364 12.4286C21.7277 12.4286 21.2698 12.4571 20.7766 12.5071C22.4111 13.7 23.5455 15.3071 23.5455 17.4286V21H32V17.4286C32 14.1 25.4266 12.4286 22.1364 12.4286Z' stroke='%23469885'/%3e%3c/svg%3e";
29109
+ const img$b = "data:image/svg+xml,%3csvg width='33' height='22' viewBox='0 0 33 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M22.1364 9.57143C24.4684 9.57143 26.3495 7.65 26.3495 5.28571C26.3495 2.92143 24.4684 1 22.1364 1C19.8043 1 17.9091 2.92143 17.9091 5.28571C17.9091 7.65 19.8043 9.57143 22.1364 9.57143ZM10.8636 9.57143C13.1957 9.57143 15.0768 7.65 15.0768 5.28571C15.0768 2.92143 13.1957 1 10.8636 1C8.53159 1 6.63636 2.92143 6.63636 5.28571C6.63636 7.65 8.53159 9.57143 10.8636 9.57143ZM10.8636 12.4286C7.57341 12.4286 1 14.1 1 17.4286V21H20.7273V17.4286C20.7273 14.1 14.1539 12.4286 10.8636 12.4286ZM22.1364 12.4286C21.7277 12.4286 21.2698 12.4571 20.7766 12.5071C22.4111 13.7 23.5455 15.3071 23.5455 17.4286V21H32V17.4286C32 14.1 25.4266 12.4286 22.1364 12.4286Z' stroke='%23469885'/%3e%3c/svg%3e";
28728
29110
 
28729
- const img$b = "data:image/svg+xml,%3csvg width='23' height='23' viewBox='0 0 23 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M11.5 22L9.9775 20.4951C4.57 15.145 1 11.6144 1 7.29428C1 3.76376 3.53575 1 6.775 1C8.602 1 10.3555 1.92698 11.5 3.3861C12.6445 1.92698 14.398 1 16.225 1C19.4642 1 22 3.76376 22 7.29428C22 11.6144 18.43 15.145 13.0225 20.4951L11.5 22Z' stroke='%23469885'/%3e%3c/svg%3e";
29111
+ const img$c = "data:image/svg+xml,%3csvg width='23' height='23' viewBox='0 0 23 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M11.5 22L9.9775 20.4951C4.57 15.145 1 11.6144 1 7.29428C1 3.76376 3.53575 1 6.775 1C8.602 1 10.3555 1.92698 11.5 3.3861C12.6445 1.92698 14.398 1 16.225 1C19.4642 1 22 3.76376 22 7.29428C22 11.6144 18.43 15.145 13.0225 20.4951L11.5 22Z' stroke='%23469885'/%3e%3c/svg%3e";
28730
29112
 
28731
- const img$c = "data:image/svg+xml,%3csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1 0.5L6 5.5L11 0.5' stroke='black'/%3e%3c/svg%3e";
29113
+ const img$d = "data:image/svg+xml,%3csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1 0.5L6 5.5L11 0.5' stroke='black'/%3e%3c/svg%3e";
28732
29114
 
28733
- const img$d = "data:image/svg+xml,%3csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M11 6L6 0.999999L1 6' stroke='black'/%3e%3c/svg%3e";
29115
+ const img$e = "data:image/svg+xml,%3csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M11 6L6 0.999999L1 6' stroke='black'/%3e%3c/svg%3e";
28734
29116
 
28735
- const img$e = "data:image/svg+xml,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 15.117C16 15.6047 15.6047 16 15.117 16H11.0397V9.80371H13.1196L13.4312 7.38917H11.0397V5.84762C11.0397 5.14854 11.2341 4.67173 12.2366 4.67173L13.5153 4.6713V2.51173C13.2939 2.48209 12.5351 2.41628 11.6521 2.41628C9.8085 2.41628 8.54632 3.54161 8.54632 5.60835V7.38917H6.46128V9.80371H8.54632V16H0.883005C0.395304 16 0 15.6047 0 15.117V0.883005C0 0.395304 0.395304 0 0.883005 0H15.117C15.6047 0 16 0.395304 16 0.883005V15.117Z' fill='%23252829'/%3e%3c/svg%3e";
29117
+ const img$f = "data:image/svg+xml,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 15.117C16 15.6047 15.6047 16 15.117 16H11.0397V9.80371H13.1196L13.4312 7.38917H11.0397V5.84762C11.0397 5.14854 11.2341 4.67173 12.2366 4.67173L13.5153 4.6713V2.51173C13.2939 2.48209 12.5351 2.41628 11.6521 2.41628C9.8085 2.41628 8.54632 3.54161 8.54632 5.60835V7.38917H6.46128V9.80371H8.54632V16H0.883005C0.395304 16 0 15.6047 0 15.117V0.883005C0 0.395304 0.395304 0 0.883005 0H15.117C15.6047 0 16 0.395304 16 0.883005V15.117Z' fill='%23252829'/%3e%3c/svg%3e";
28736
29118
 
28737
- const img$f = "data:image/svg+xml,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.00002 0C5.82733 0 5.5549 0.00920933 4.70161 0.0481423C3.8501 0.0869797 3.26855 0.222229 2.7597 0.420006C2.23363 0.624419 1.78748 0.897966 1.34271 1.34271C0.897966 1.78748 0.624419 2.23363 0.420006 2.7597C0.222229 3.26855 0.0869797 3.8501 0.0481423 4.70161C0.00920933 5.5549 0 5.82733 0 8.00002C0 10.1727 0.00920933 10.4451 0.0481423 11.2984C0.0869797 12.1499 0.222229 12.7314 0.420006 13.2403C0.624419 13.7664 0.897966 14.2125 1.34271 14.6573C1.78748 15.102 2.23363 15.3756 2.7597 15.58C3.26855 15.7778 3.8501 15.913 4.70161 15.9519C5.5549 15.9908 5.82733 16 8.00002 16C10.1727 16 10.4451 15.9908 11.2984 15.9519C12.1499 15.913 12.7314 15.7778 13.2403 15.58C13.7664 15.3756 14.2125 15.102 14.6573 14.6573C15.102 14.2125 15.3756 13.7664 15.58 13.2403C15.7778 12.7314 15.913 12.1499 15.9519 11.2984C15.9908 10.4451 16 10.1727 16 8.00002C16 5.82733 15.9908 5.5549 15.9519 4.70161C15.913 3.8501 15.7778 3.26855 15.58 2.7597C15.3756 2.23363 15.102 1.78748 14.6573 1.34271C14.2125 0.897966 13.7664 0.624419 13.2403 0.420006C12.7314 0.222229 12.1499 0.0869797 11.2984 0.0481423C10.4451 0.00920933 10.1727 0 8.00002 0ZM7.99998 1.44141C10.1361 1.44141 10.3891 1.44957 11.2327 1.48806C12.0126 1.52362 12.4362 1.65395 12.7181 1.76351C13.0916 1.90863 13.3581 2.08199 13.638 2.36195C13.9179 2.64188 14.0913 2.90838 14.2364 3.2818C14.346 3.56369 14.4763 3.98729 14.5119 4.76728C14.5504 5.61085 14.5585 5.86388 14.5585 7.99998C14.5585 10.1361 14.5504 10.3891 14.5119 11.2327C14.4763 12.0126 14.346 12.4362 14.2364 12.7181C14.0913 13.0916 13.9179 13.3581 13.638 13.638C13.3581 13.9179 13.0916 14.0913 12.7181 14.2364C12.4362 14.346 12.0126 14.4763 11.2327 14.5119C10.3892 14.5504 10.1362 14.5585 7.99998 14.5585C5.86372 14.5585 5.61075 14.5504 4.76728 14.5119C3.98729 14.4763 3.56369 14.346 3.2818 14.2364C2.90838 14.0913 2.64188 13.9179 2.36195 13.638C2.08202 13.3581 1.90863 13.0916 1.76351 12.7181C1.65395 12.4362 1.52362 12.0126 1.48806 11.2327C1.44957 10.3891 1.44141 10.1361 1.44141 7.99998C1.44141 5.86388 1.44957 5.61085 1.48806 4.76728C1.52362 3.98729 1.65395 3.56369 1.76351 3.2818C1.90863 2.90838 2.08199 2.64188 2.36195 2.36195C2.64188 2.08199 2.90838 1.90863 3.2818 1.76351C3.56369 1.65395 3.98729 1.52362 4.76728 1.48806C5.61085 1.44957 5.86388 1.44141 7.99998 1.44141ZM3.8916 7.99972C3.8916 5.73085 5.73085 3.8916 7.99972 3.8916C10.2686 3.8916 12.1078 5.73085 12.1078 7.99972C12.1078 10.2686 10.2686 12.1078 7.99972 12.1078C5.73085 12.1078 3.8916 10.2686 3.8916 7.99972ZM8.00018 10.6663C6.5274 10.6663 5.3335 9.47244 5.3335 7.99969C5.3335 6.52691 6.5274 5.33301 8.00018 5.33301C9.47293 5.33301 10.6668 6.52691 10.6668 7.99969C10.6668 9.47244 9.47293 10.6663 8.00018 10.6663ZM12.2705 4.68953C12.8007 4.68953 13.2305 4.25975 13.2305 3.72955C13.2305 3.19935 12.8007 2.76953 12.2705 2.76953C11.7404 2.76953 11.3105 3.19935 11.3105 3.72955C11.3105 4.25975 11.7404 4.68953 12.2705 4.68953Z' fill='%23252829'/%3e%3c/svg%3e";
29119
+ const img$g = "data:image/svg+xml,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.00002 0C5.82733 0 5.5549 0.00920933 4.70161 0.0481423C3.8501 0.0869797 3.26855 0.222229 2.7597 0.420006C2.23363 0.624419 1.78748 0.897966 1.34271 1.34271C0.897966 1.78748 0.624419 2.23363 0.420006 2.7597C0.222229 3.26855 0.0869797 3.8501 0.0481423 4.70161C0.00920933 5.5549 0 5.82733 0 8.00002C0 10.1727 0.00920933 10.4451 0.0481423 11.2984C0.0869797 12.1499 0.222229 12.7314 0.420006 13.2403C0.624419 13.7664 0.897966 14.2125 1.34271 14.6573C1.78748 15.102 2.23363 15.3756 2.7597 15.58C3.26855 15.7778 3.8501 15.913 4.70161 15.9519C5.5549 15.9908 5.82733 16 8.00002 16C10.1727 16 10.4451 15.9908 11.2984 15.9519C12.1499 15.913 12.7314 15.7778 13.2403 15.58C13.7664 15.3756 14.2125 15.102 14.6573 14.6573C15.102 14.2125 15.3756 13.7664 15.58 13.2403C15.7778 12.7314 15.913 12.1499 15.9519 11.2984C15.9908 10.4451 16 10.1727 16 8.00002C16 5.82733 15.9908 5.5549 15.9519 4.70161C15.913 3.8501 15.7778 3.26855 15.58 2.7597C15.3756 2.23363 15.102 1.78748 14.6573 1.34271C14.2125 0.897966 13.7664 0.624419 13.2403 0.420006C12.7314 0.222229 12.1499 0.0869797 11.2984 0.0481423C10.4451 0.00920933 10.1727 0 8.00002 0ZM7.99998 1.44141C10.1361 1.44141 10.3891 1.44957 11.2327 1.48806C12.0126 1.52362 12.4362 1.65395 12.7181 1.76351C13.0916 1.90863 13.3581 2.08199 13.638 2.36195C13.9179 2.64188 14.0913 2.90838 14.2364 3.2818C14.346 3.56369 14.4763 3.98729 14.5119 4.76728C14.5504 5.61085 14.5585 5.86388 14.5585 7.99998C14.5585 10.1361 14.5504 10.3891 14.5119 11.2327C14.4763 12.0126 14.346 12.4362 14.2364 12.7181C14.0913 13.0916 13.9179 13.3581 13.638 13.638C13.3581 13.9179 13.0916 14.0913 12.7181 14.2364C12.4362 14.346 12.0126 14.4763 11.2327 14.5119C10.3892 14.5504 10.1362 14.5585 7.99998 14.5585C5.86372 14.5585 5.61075 14.5504 4.76728 14.5119C3.98729 14.4763 3.56369 14.346 3.2818 14.2364C2.90838 14.0913 2.64188 13.9179 2.36195 13.638C2.08202 13.3581 1.90863 13.0916 1.76351 12.7181C1.65395 12.4362 1.52362 12.0126 1.48806 11.2327C1.44957 10.3891 1.44141 10.1361 1.44141 7.99998C1.44141 5.86388 1.44957 5.61085 1.48806 4.76728C1.52362 3.98729 1.65395 3.56369 1.76351 3.2818C1.90863 2.90838 2.08199 2.64188 2.36195 2.36195C2.64188 2.08199 2.90838 1.90863 3.2818 1.76351C3.56369 1.65395 3.98729 1.52362 4.76728 1.48806C5.61085 1.44957 5.86388 1.44141 7.99998 1.44141ZM3.8916 7.99972C3.8916 5.73085 5.73085 3.8916 7.99972 3.8916C10.2686 3.8916 12.1078 5.73085 12.1078 7.99972C12.1078 10.2686 10.2686 12.1078 7.99972 12.1078C5.73085 12.1078 3.8916 10.2686 3.8916 7.99972ZM8.00018 10.6663C6.5274 10.6663 5.3335 9.47244 5.3335 7.99969C5.3335 6.52691 6.5274 5.33301 8.00018 5.33301C9.47293 5.33301 10.6668 6.52691 10.6668 7.99969C10.6668 9.47244 9.47293 10.6663 8.00018 10.6663ZM12.2705 4.68953C12.8007 4.68953 13.2305 4.25975 13.2305 3.72955C13.2305 3.19935 12.8007 2.76953 12.2705 2.76953C11.7404 2.76953 11.3105 3.19935 11.3105 3.72955C11.3105 4.25975 11.7404 4.68953 12.2705 4.68953Z' fill='%23252829'/%3e%3c/svg%3e";
28738
29120
 
28739
- const img$g = "data:image/svg+xml,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M14.759 0H1.19668C0.531856 0 0 0.533333 0 1.15556V14.8444C0 15.4667 0.531856 16 1.19668 16H14.8033C15.4681 16 16 15.4667 16 14.8444V1.15556C15.9557 0.533333 15.4238 0 14.759 0ZM4.74238 13.6444H2.34903V6H4.69806V13.6444H4.74238ZM3.54571 4.93333C2.79224 4.93333 2.17175 4.31111 2.17175 3.55556C2.17175 2.8 2.79224 2.22222 3.54571 2.22222C4.29917 2.22222 4.91967 2.84444 4.91967 3.6C4.91967 4.35556 4.29917 4.93333 3.54571 4.93333ZM13.6066 13.6444H11.2576V9.91111C11.2576 9.02222 11.2576 7.86667 10.0166 7.86667C8.77562 7.86667 8.59834 8.84444 8.59834 9.82222V13.6H6.20499V6H8.46537V7.02222H8.5097C8.81995 6.4 9.61773 5.77778 10.7701 5.77778C13.1634 5.77778 13.6066 7.37778 13.6066 9.42222V13.6444Z' fill='%23252829'/%3e%3c/svg%3e";
29121
+ const img$h = "data:image/svg+xml,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M14.759 0H1.19668C0.531856 0 0 0.533333 0 1.15556V14.8444C0 15.4667 0.531856 16 1.19668 16H14.8033C15.4681 16 16 15.4667 16 14.8444V1.15556C15.9557 0.533333 15.4238 0 14.759 0ZM4.74238 13.6444H2.34903V6H4.69806V13.6444H4.74238ZM3.54571 4.93333C2.79224 4.93333 2.17175 4.31111 2.17175 3.55556C2.17175 2.8 2.79224 2.22222 3.54571 2.22222C4.29917 2.22222 4.91967 2.84444 4.91967 3.6C4.91967 4.35556 4.29917 4.93333 3.54571 4.93333ZM13.6066 13.6444H11.2576V9.91111C11.2576 9.02222 11.2576 7.86667 10.0166 7.86667C8.77562 7.86667 8.59834 8.84444 8.59834 9.82222V13.6H6.20499V6H8.46537V7.02222H8.5097C8.81995 6.4 9.61773 5.77778 10.7701 5.77778C13.1634 5.77778 13.6066 7.37778 13.6066 9.42222V13.6444Z' fill='%23252829'/%3e%3c/svg%3e";
28740
29122
 
28741
- const img$h = "data:image/svg+xml,%3csvg style='color: white' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3e%3c!--! Font Awesome Free 6.1.1 by %40fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0%2c Fonts: SIL OFL 1.1%2c Code: MIT License) Copyright 2022 Fonticons%2c Inc. --%3e%3cpath d='M502.6 278.6l-128 128c-12.51 12.51-32.76 12.49-45.25 0c-12.5-12.5-12.5-32.75 0-45.25L402.8 288H32C14.31 288 0 273.7 0 255.1S14.31 224 32 224h370.8l-73.38-73.38c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0l128 128C515.1 245.9 515.1 266.1 502.6 278.6z' fill='white'%3e%3c/path%3e%3c/svg%3e";
29123
+ const img$i = "data:image/svg+xml,%3csvg style='color: white' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3e%3c!--! Font Awesome Free 6.1.1 by %40fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0%2c Fonts: SIL OFL 1.1%2c Code: MIT License) Copyright 2022 Fonticons%2c Inc. --%3e%3cpath d='M502.6 278.6l-128 128c-12.51 12.51-32.76 12.49-45.25 0c-12.5-12.5-12.5-32.75 0-45.25L402.8 288H32C14.31 288 0 273.7 0 255.1S14.31 224 32 224h370.8l-73.38-73.38c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0l128 128C515.1 245.9 515.1 266.1 502.6 278.6z' fill='white'%3e%3c/path%3e%3c/svg%3e";
28742
29124
 
28743
29125
  function FooterV2(_ref) {
28744
29126
  var className = _ref.className,
@@ -28761,19 +29143,19 @@ function FooterV2(_ref) {
28761
29143
  setActiveState = _useState2[1];
28762
29144
 
28763
29145
  return React.createElement("footer", {
28764
- className: classnames(cls$e.wrapper, className)
29146
+ className: classnames(cls$m.wrapper, className)
28765
29147
  }, !bottomSectionOnly && React.createElement("div", {
28766
- className: cls$e.container
29148
+ className: cls$m.container
28767
29149
  }, React.createElement("section", {
28768
- className: cls$e.main_block
29150
+ className: cls$m.main_block
28769
29151
  }, React.createElement("div", {
28770
- className: cls$e.main_block_logo
29152
+ className: cls$m.main_block_logo
28771
29153
  }, React.createElement("img", {
28772
- src: img$8,
28773
- className: cls$e.logo,
29154
+ src: img$9,
29155
+ className: cls$m.logo,
28774
29156
  alt: "mycause"
28775
29157
  })), React.createElement("div", {
28776
- className: cls$e.main_block_left
29158
+ className: cls$m.main_block_left
28777
29159
  }, body.map(function (_item) {
28778
29160
  var _title = lodash.get(_item, "primary.text[0].text");
28779
29161
 
@@ -28781,9 +29163,9 @@ function FooterV2(_ref) {
28781
29163
 
28782
29164
  return React.createElement("div", {
28783
29165
  key: _item.id,
28784
- className: cls$e.item_link
29166
+ className: cls$m.item_link
28785
29167
  }, React.createElement("h2", null, _title), React.createElement("div", {
28786
- className: cls$e.list_links
29168
+ className: cls$m.list_links
28787
29169
  }, _items.map(function (__item) {
28788
29170
  return React.createElement("a", {
28789
29171
  id: __item.id_click,
@@ -28792,29 +29174,29 @@ function FooterV2(_ref) {
28792
29174
  }, __item.call_to_action_text);
28793
29175
  })));
28794
29176
  }), React.createElement("div", {
28795
- className: cls$e.main_block_left_bottom
29177
+ className: cls$m.main_block_left_bottom
28796
29178
  }, React.createElement("div", {
28797
29179
  id: "GlobalFooterForYourCharityNFPCorporateEventOrSchool",
28798
- className: cls$e.main_block_card,
29180
+ className: cls$m.main_block_card,
28799
29181
  onClick: function onClick() {
28800
29182
  window.open(OrangeCardUrl);
28801
29183
  }
28802
29184
  }, React.createElement("div", {
28803
- className: cls$e.title
29185
+ className: cls$m.title
28804
29186
  }, React.createElement("div", null, OrangeCardFirstTitle), React.createElement("div", null, OrangeCardSecondTitle)), React.createElement("div", null, React.createElement("img", {
28805
- src: img$h,
29187
+ src: img$i,
28806
29188
  alt: ""
28807
29189
  }))), React.createElement("div", {
28808
- className: cls$e.main_block_follow
29190
+ className: cls$m.main_block_follow
28809
29191
  }, React.createElement("h2", null, "Follow"), React.createElement("div", {
28810
- className: cls$e.social_icons
29192
+ className: cls$m.social_icons
28811
29193
  }, React.createElement("a", {
28812
29194
  id: "GlobalFooterFacebook",
28813
29195
  href: "https://www.facebook.com/pages/mycausecomau/127752343910389",
28814
29196
  target: "_blank",
28815
29197
  rel: "noopener noreferrer"
28816
29198
  }, React.createElement("img", {
28817
- src: img$e,
29199
+ src: img$f,
28818
29200
  alt: ""
28819
29201
  })), React.createElement("a", {
28820
29202
  id: "GlobalFooterInstagram",
@@ -28822,7 +29204,7 @@ function FooterV2(_ref) {
28822
29204
  target: "_blank",
28823
29205
  rel: "noopener noreferrer"
28824
29206
  }, React.createElement("img", {
28825
- src: img$f,
29207
+ src: img$g,
28826
29208
  alt: ""
28827
29209
  })), React.createElement("a", {
28828
29210
  id: "GlobalFooterLinkedIn",
@@ -28830,10 +29212,10 @@ function FooterV2(_ref) {
28830
29212
  target: "_blank",
28831
29213
  rel: "noopener noreferrer"
28832
29214
  }, React.createElement("img", {
28833
- src: img$g,
29215
+ src: img$h,
28834
29216
  alt: ""
28835
29217
  })))))), React.createElement("div", {
28836
- className: cls$e.main_block_left_mobile
29218
+ className: cls$m.main_block_left_mobile
28837
29219
  }, body.map(function (_item, index) {
28838
29220
  var _title = lodash.get(_item, "primary.text[0].text");
28839
29221
 
@@ -28841,17 +29223,17 @@ function FooterV2(_ref) {
28841
29223
 
28842
29224
  return React.createElement("div", {
28843
29225
  key: _title,
28844
- className: cls$e.item_link
29226
+ className: cls$m.item_link
28845
29227
  }, React.createElement("div", {
28846
- className: cls$e.title_container,
29228
+ className: cls$m.title_container,
28847
29229
  onClick: function onClick() {
28848
29230
  return setActiveState(_objectSpread2({}, activeState, _defineProperty({}, index, !activeState[index])));
28849
29231
  }
28850
29232
  }, React.createElement("h2", null, _title), React.createElement("img", {
28851
- src: activeState[index] ? img$d : img$c,
29233
+ src: activeState[index] ? img$e : img$d,
28852
29234
  alt: ""
28853
29235
  })), React.createElement("div", {
28854
- className: classnames(cls$e.list_links, "".concat(activeState[index] ? cls$e.active : cls$e.inactive))
29236
+ className: classnames(cls$m.list_links, "".concat(activeState[index] ? cls$m.active : cls$m.inactive))
28855
29237
  }, _items.map(function (__item) {
28856
29238
  return React.createElement("a", {
28857
29239
  id: __item.id_click,
@@ -28860,16 +29242,16 @@ function FooterV2(_ref) {
28860
29242
  }, __item.call_to_action_text);
28861
29243
  })));
28862
29244
  })), React.createElement("div", {
28863
- className: cls$e.main_block_follow_mobile
29245
+ className: cls$m.main_block_follow_mobile
28864
29246
  }, React.createElement("h2", null, "Follow"), React.createElement("div", {
28865
- className: cls$e.social_icons_mobile
29247
+ className: cls$m.social_icons_mobile
28866
29248
  }, React.createElement("a", {
28867
29249
  id: "GlobalFooterFacebook",
28868
29250
  href: "https://www.facebook.com/pages/mycausecomau/127752343910389",
28869
29251
  target: "_blank",
28870
29252
  rel: "noopener noreferrer"
28871
29253
  }, React.createElement("img", {
28872
- src: img$e,
29254
+ src: img$f,
28873
29255
  alt: ""
28874
29256
  })), React.createElement("a", {
28875
29257
  id: "GlobalFooterInstagram",
@@ -28877,7 +29259,7 @@ function FooterV2(_ref) {
28877
29259
  target: "_blank",
28878
29260
  rel: "noopener noreferrer"
28879
29261
  }, React.createElement("img", {
28880
- src: img$f,
29262
+ src: img$g,
28881
29263
  alt: ""
28882
29264
  })), React.createElement("a", {
28883
29265
  id: "GlobalFooterLinkedIn",
@@ -28885,54 +29267,54 @@ function FooterV2(_ref) {
28885
29267
  target: "_blank",
28886
29268
  rel: "noopener noreferrer"
28887
29269
  }, React.createElement("img", {
28888
- src: img$g,
29270
+ src: img$h,
28889
29271
  alt: ""
28890
29272
  })))), React.createElement("div", {
28891
- className: cls$e.statistics
29273
+ className: cls$m.statistics
28892
29274
  }, React.createElement("div", {
28893
- className: cls$e.container
29275
+ className: cls$m.container
28894
29276
  }, React.createElement("p", {
28895
- className: cls$e.title
29277
+ className: cls$m.title
28896
29278
  }, "We support your cause"), React.createElement("div", {
28897
- className: cls$e.statistics_item_container
29279
+ className: cls$m.statistics_item_container
28898
29280
  }, React.createElement("div", {
28899
- className: cls$e.statistics_item
29281
+ className: cls$m.statistics_item
28900
29282
  }, React.createElement("img", {
28901
- src: img$b,
29283
+ src: img$c,
28902
29284
  alt: "mycause"
28903
29285
  }), React.createElement("p", {
28904
- className: cls$e.statistics_number
29286
+ className: cls$m.statistics_number
28905
29287
  }, "100% Australian Owned", " ")), React.createElement("div", {
28906
- className: cls$e.statistics_item
29288
+ className: cls$m.statistics_item
28907
29289
  }, React.createElement("img", {
28908
- src: img$a,
29290
+ src: img$b,
28909
29291
  alt: "mycause"
28910
29292
  }), React.createElement("p", {
28911
- className: cls$e.statistics_number
29293
+ className: cls$m.statistics_number
28912
29294
  }, "Australia\u2019s largest crowdfunding platform", " ")), React.createElement("div", {
28913
- className: cls$e.statistics_item
29295
+ className: cls$m.statistics_item
28914
29296
  }, React.createElement("img", {
28915
- src: img$9,
29297
+ src: img$a,
28916
29298
  alt: "mycause"
28917
29299
  }), React.createElement("p", {
28918
- className: cls$e.statistics_number
29300
+ className: cls$m.statistics_number
28919
29301
  }, "Fundraise in five minutes", " ")))))), React.createElement("section", {
28920
- className: cls$e.main_block_card_mobile
29302
+ className: cls$m.main_block_card_mobile
28921
29303
  }, React.createElement("div", {
28922
29304
  id: "GlobalFooterForYourCharityNFPCorporateEventOrSchool",
28923
- className: cls$e.main_block_card,
29305
+ className: cls$m.main_block_card,
28924
29306
  onClick: function onClick() {
28925
29307
  window.open(OrangeCardUrl);
28926
29308
  }
28927
29309
  }, React.createElement("div", {
28928
- className: cls$e.title
29310
+ className: cls$m.title
28929
29311
  }, React.createElement("div", null, OrangeCardFirstTitle), React.createElement("div", null, OrangeCardSecondTitle)), React.createElement("div", null, React.createElement("img", {
28930
- src: img$h,
29312
+ src: img$i,
28931
29313
  alt: ""
28932
29314
  }))))), React.createElement("section", {
28933
- className: cls$e.bottom_section
29315
+ className: cls$m.bottom_section
28934
29316
  }, React.createElement("div", {
28935
- className: cls$e.bottom_container
29317
+ className: cls$m.bottom_container
28936
29318
  }, React.createElement(Stack, {
28937
29319
  wrap: true
28938
29320
  }, React.createElement("a", {
@@ -28949,362 +29331,507 @@ function FooterV2(_ref) {
28949
29331
  }, "Copyright \xA9 ", new Date().getFullYear(), " all rights reserved"))));
28950
29332
  }
28951
29333
 
28952
- var css$f = ".partner-line-chart-module_canvasContainer__3SYlg canvas {\n width: 100% !important;\n max-height: 245px;\n display: inline-block;\n vertical-align: baseline;\n aspect-ratio: 16/9; }\n";
28953
- var cls$f = {"canvasContainer":"partner-line-chart-module_canvasContainer__3SYlg"};
28954
- styleInject(css$f);
28955
-
28956
- var PartnerLineChart = function PartnerLineChart(props) {
28957
- var chartData = props.chartData;
28958
- var chartRef = useRef(null);
28959
- var myLineChart = null;
28960
- useEffect(function () {
28961
- if (chartData && chartRef.current) {
28962
- Chart.defaults.global = {
28963
- // Boolean - Whether to animate the chart
28964
- animation: true,
28965
- // Number - Number of animation steps
28966
- animationSteps: 60,
28967
- // String - Animation easing effect
28968
- // Possible effects are:
28969
- // [easeInOutQuart, linear, easeOutBounce, easeInBack, easeInOutQuad,
28970
- // easeOutQuart, easeOutQuad, easeInOutBounce, easeOutSine, easeInOutCubic,
28971
- // easeInExpo, easeInOutBack, easeInCirc, easeInOutElastic, easeOutBack,
28972
- // easeInQuad, easeInOutExpo, easeInQuart, easeOutQuint, easeInOutCirc,
28973
- // easeInSine, easeOutExpo, easeOutCirc, easeOutCubic, easeInQuint,
28974
- // easeInElastic, easeInOutSine, easeInOutQuint, easeInBounce,
28975
- // easeOutElastic, easeInCubic]
28976
- animationEasing: "easeOutQuart",
28977
- // Boolean - If we should show the scale at all
28978
- showScale: true,
28979
- // Boolean - If we want to override with a hard coded scale
28980
- scaleOverride: false,
28981
- // ** Required if scaleOverride is true **
28982
- // Number - The number of steps in a hard coded scale
28983
- scaleSteps: null,
28984
- // Number - The value jump in the hard coded scale
28985
- scaleStepWidth: null,
28986
- // Number - The scale starting value
28987
- scaleStartValue: null,
28988
- // String - Colour of the scale line
28989
- scaleLineColor: "rgba(0,0,0,.1)",
28990
- // Number - Pixel width of the scale line
28991
- scaleLineWidth: 1,
28992
- // Boolean - Whether to show labels on the scale
28993
- scaleShowLabels: true,
28994
- // Interpolated JS string - can access value
28995
- scaleLabel: "<%='$' +parseFloat(value).toLocaleString() %>",
28996
- // Boolean - Whether the scale should stick to integers, not floats even if drawing space is there
28997
- scaleIntegersOnly: true,
28998
- // Boolean - Whether the scale should start at zero, or an order of magnitude down from the lowest value
28999
- scaleBeginAtZero: false,
29000
- // String - Scale label font declaration for the scale label
29001
- scaleFontFamily: "'Helvetica Neue', 'Helvetica', 'Arial', sans-serif",
29002
- // Number - Scale label font size in pixels
29003
- scaleFontSize: 15,
29004
- // String - Scale label font weight style
29005
- scaleFontStyle: "normal",
29006
- // String - Scale label font colour
29007
- scaleFontColor: "#666",
29008
- // Boolean - whether or not the chart should be responsive and resize when the browser does.
29009
- responsive: true,
29010
- // Boolean - whether to maintain the starting aspect ratio or not when responsive, if set to false, will take up entire container
29011
- maintainAspectRatio: false,
29012
- // Boolean - Determines whether to draw tooltips on the canvas or not
29013
- showTooltips: true,
29014
- // Function - Determines whether to execute the customTooltips function instead of drawing the built in tooltips (See [Advanced - External Tooltips](#advanced-usage-custom-tooltips))
29015
- customTooltips: false,
29016
- // Array - Array of string names to attach tooltip events
29017
- tooltipEvents: ["mousemove", "touchstart", "touchmove"],
29018
- // String - Tooltip background colour
29019
- tooltipFillColor: "rgba(0,0,0,0.8)",
29020
- // String - Tooltip label font declaration for the scale label
29021
- tooltipFontFamily: "'Helvetica Neue', 'Helvetica', 'Arial', sans-serif",
29022
- // Number - Tooltip label font size in pixels
29023
- tooltipFontSize: 14,
29024
- // String - Tooltip font weight style
29025
- tooltipFontStyle: "normal",
29026
- // String - Tooltip label font colour
29027
- tooltipFontColor: "#fff",
29028
- // String - Tooltip title font declaration for the scale label
29029
- tooltipTitleFontFamily: "'Helvetica Neue', 'Helvetica', 'Arial', sans-serif",
29030
- // Number - Tooltip title font size in pixels
29031
- tooltipTitleFontSize: 14,
29032
- // String - Tooltip title font weight style
29033
- tooltipTitleFontStyle: "bold",
29034
- // String - Tooltip title font colour
29035
- tooltipTitleFontColor: "#fff",
29036
- // Number - pixel width of padding around tooltip text
29037
- tooltipYPadding: 6,
29038
- // Number - pixel width of padding around tooltip text
29039
- tooltipXPadding: 6,
29040
- // Number - Size of the caret on the tooltip
29041
- tooltipCaretSize: 8,
29042
- // Number - Pixel radius of the tooltip border
29043
- tooltipCornerRadius: 6,
29044
- // Number - Pixel offset from point x to tooltip edge
29045
- tooltipXOffset: 10,
29046
- // String - Template string for single tooltips
29047
- tooltipTemplate: "<%if (label){%><%=label%>: <%}%><%= '$' +parseFloat(value).toLocaleString() %>",
29048
- // String - Template string for multiple tooltips
29049
- multiTooltipTemplate: "<%= '$' +parseFloat(value).toLocaleString() %>",
29050
- // Function - Will fire on animation progression.
29051
- onAnimationProgress: function onAnimationProgress() {},
29052
- // Function - Will fire on animation completion.
29053
- onAnimationComplete: function onAnimationComplete() {}
29054
- };
29055
- var ctx = chartRef.current.getContext("2d");
29056
- var lineData = {
29057
- labels: chartData.months_label,
29058
- datasets: [{
29059
- label: "My Second dataset",
29060
- fillColor: "rgba(255,255,255,0)",
29061
- strokeColor: "#FC595D",
29062
- pointColor: "#FC595D",
29063
- pointStrokeColor: "#FC595D",
29064
- pointHighlightFill: "#d87805",
29065
- pointHighlightStroke: "#d87805",
29066
- data: chartData.current_year
29067
- }]
29068
- };
29069
- myLineChart = new Chart(ctx).Line(lineData, {
29070
- pointDotRadius: 0,
29071
- bezierCurve: true,
29072
- scaleShowVerticalLines: true,
29073
- scaleShowHorizontalLines: false,
29074
- scaleGridLineColor: "#CCCCCC"
29075
- });
29076
- }
29077
-
29078
- return function () {
29079
- if (myLineChart) {
29080
- myLineChart.destroy();
29081
- }
29082
- };
29083
- }, [chartData]); // Update the chart if the props change
29084
- // useEffect(() => {
29085
- // if (myLineChart && chartRef.current) {
29086
- // const ctx = chartRef.current.getContext("2d");
29087
- // let lineData = {
29088
- // labels: chartData.monthsLabel,
29089
- // datasets: [
29090
- // {
29091
- // label: "My Second dataset",
29092
- // fillColor: "rgba(255,255,255,0)",
29093
- // strokeColor: "#fba026",
29094
- // pointColor: "#fba026",
29095
- // pointStrokeColor: "#fba026",
29096
- // pointHighlightFill: "#d87805",
29097
- // pointHighlightStroke: "#d87805",
29098
- // data: chartData.currentYear,
29099
- // },
29100
- // ],
29101
- // };
29102
- // new Chart(ctx).Line(lineData, {
29103
- // pointDotRadius: 2,
29104
- // bezierCurve: true,
29105
- // scaleShowVerticalLines: true,
29106
- // scaleShowHorizontalLines: false,
29107
- // scaleGridLineColor: "#CCCCCC",
29108
- // });
29109
- // }
29110
- // }, [myLineChart, chartData]);
29334
+ var css$n = ".my-account-start-fundraise-card-module_wrapper__2Iaek {\n height: 226px;\n display: flex;\n align-items: center;\n border-radius: 16px;\n background-color: #F7F7F8;\n position: relative;\n font-family: \"Montserrat\", sans-serif; }\n .my-account-start-fundraise-card-module_wrapper__2Iaek .my-account-start-fundraise-card-module_leftSide__Tr9gw {\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n justify-content: space-between;\n padding: 50px 55px;\n height: 100%; }\n .my-account-start-fundraise-card-module_wrapper__2Iaek .my-account-start-fundraise-card-module_leftSide__Tr9gw .my-account-start-fundraise-card-module_title__19XBe {\n font-weight: 700;\n font-size: 24px;\n line-height: 32px;\n text-align: left;\n color: #404041; }\n .my-account-start-fundraise-card-module_wrapper__2Iaek .my-account-start-fundraise-card-module_rightSide__1k67A {\n width: 295px;\n height: 209px;\n background-image: url(./start-fundraise-card.svg);\n position: absolute;\n right: 0;\n bottom: 0; }\n\n@media all and (max-width: 768px) {\n .my-account-start-fundraise-card-module_wrapper__2Iaek {\n height: 200px;\n padding: 20px;\n overflow: hidden; }\n .my-account-start-fundraise-card-module_wrapper__2Iaek .my-account-start-fundraise-card-module_rightSide__1k67A {\n height: 160px;\n border-radius: 0px 0px 16px 0px;\n right: -80px; }\n .my-account-start-fundraise-card-module_wrapper__2Iaek .my-account-start-fundraise-card-module_leftSide__Tr9gw {\n padding: 10px; }\n .my-account-start-fundraise-card-module_wrapper__2Iaek .my-account-start-fundraise-card-module_leftSide__Tr9gw .my-account-start-fundraise-card-module_title__19XBe {\n font-size: 22px; } }\n\n@media all and (max-width: 480px) {\n .my-account-start-fundraise-card-module_wrapper__2Iaek {\n height: 200px;\n padding: 20px;\n overflow: hidden; }\n .my-account-start-fundraise-card-module_wrapper__2Iaek .my-account-start-fundraise-card-module_rightSide__1k67A {\n height: 120px;\n border-radius: 0px 0px 16px 0px;\n right: -120px; }\n .my-account-start-fundraise-card-module_wrapper__2Iaek .my-account-start-fundraise-card-module_leftSide__Tr9gw {\n padding: 10px;\n justify-content: space-around;\n z-index: 1; }\n .my-account-start-fundraise-card-module_wrapper__2Iaek .my-account-start-fundraise-card-module_leftSide__Tr9gw .my-account-start-fundraise-card-module_title__19XBe {\n font-size: 20px;\n line-height: 24px; } }\n";
29335
+ var cls$n = {"wrapper":"my-account-start-fundraise-card-module_wrapper__2Iaek","leftSide":"my-account-start-fundraise-card-module_leftSide__Tr9gw","title":"my-account-start-fundraise-card-module_title__19XBe","rightSide":"my-account-start-fundraise-card-module_rightSide__1k67A"};
29336
+ styleInject(css$n);
29111
29337
 
29338
+ var MyAccountStartFundraiseCard = function MyAccountStartFundraiseCard(_ref) {
29339
+ var _ref$className = _ref.className,
29340
+ className = _ref$className === void 0 ? "" : _ref$className,
29341
+ _ref$title = _ref.title,
29342
+ title = _ref$title === void 0 ? "" : _ref$title,
29343
+ _ref$buttonText = _ref.buttonText,
29344
+ buttonText = _ref$buttonText === void 0 ? "" : _ref$buttonText,
29345
+ onClick = _ref.onClick,
29346
+ _ref$width = _ref.width,
29347
+ width = _ref$width === void 0 ? "inherit" : _ref$width;
29112
29348
  return React.createElement("div", {
29113
- className: cls$f.canvasContainer
29114
- }, React.createElement("canvas", {
29115
- ref: chartRef,
29116
- width: "auto",
29117
- height: "236"
29349
+ className: classnames(cls$n.wrapper, className),
29350
+ style: {
29351
+ width: width
29352
+ }
29353
+ }, React.createElement("div", {
29354
+ className: cls$n.leftSide
29355
+ }, React.createElement("div", {
29356
+ className: cls$n.title
29357
+ }, title), React.createElement(Button, {
29358
+ raised: true,
29359
+ display: true,
29360
+ style: {
29361
+ padding: "16px 32px",
29362
+ backgroundColor: "#FF5E6A",
29363
+ color: "white",
29364
+ height: "56px",
29365
+ borderRadius: "8px"
29366
+ },
29367
+ onClick: onClick
29368
+ }, buttonText)), React.createElement("div", {
29369
+ className: cls$n.rightSide
29118
29370
  }));
29119
29371
  };
29120
29372
 
29121
- var css$g = ".partner-line-chart-block-module_partnerLineChartBlock__2qGsV {\n box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 29px;\n border-radius: 10px;\n padding: 20px;\n margin: 20px;\n max-width: none;\n text-align: center;\n line-height: 1.5; }\n .partner-line-chart-block-module_partnerLineChartBlock__2qGsV .partner-line-chart-block-module_chartWrapper__2qobv {\n margin: 20px 0; }\n .partner-line-chart-block-module_partnerLineChartBlock__2qGsV .partner-line-chart-block-module_chartStats__yfboP {\n width: 100%;\n align-items: center;\n text-align: center;\n display: flex; }\n .partner-line-chart-block-module_partnerLineChartBlock__2qGsV .partner-line-chart-block-module_chartStats__yfboP .partner-line-chart-block-module_chartStatsItem__UDe3C {\n width: 50%; }\n .partner-line-chart-block-module_partnerLineChartBlock__2qGsV .partner-line-chart-block-module_amount_raised__6ljOa {\n line-height: 1.5;\n margin: 20px;\n font-weight: bold; }\n .partner-line-chart-block-module_partnerLineChartBlock__2qGsV .partner-line-chart-block-module_amount_raised__6ljOa .partner-line-chart-block-module_highlight__1dTYh {\n font-weight: bold;\n color: #8D8D94; }\n .partner-line-chart-block-module_partnerLineChartBlock__2qGsV .partner-line-chart-block-module_amount_raised__6ljOa .partner-line-chart-block-module_highlight__1dTYh span {\n white-space: nowrap; }\n .partner-line-chart-block-module_partnerLineChartBlock__2qGsV .partner-line-chart-block-module_amount_raised__6ljOa .partner-line-chart-block-module_title__Rvr77 {\n text-transform: uppercase; }\n .partner-line-chart-block-module_partnerLineChartBlock__2qGsV .partner-line-chart-block-module_amount_raised__6ljOa .partner-line-chart-block-module_numeric__1yBjL {\n color: #404041;\n font-weight: bold;\n line-height: 1.3;\n font-family: Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"; }\n\n@media all and (max-width: 540px) {\n .partner-line-chart-block-module_partnerLineChartBlock__2qGsV .partner-line-chart-block-module_chartStats__yfboP {\n flex-direction: column; }\n .partner-line-chart-block-module_partnerLineChartBlock__2qGsV .partner-line-chart-block-module_chartStats__yfboP .partner-line-chart-block-module_chartStatsItem__UDe3C {\n width: 100%; }\n .partner-line-chart-block-module_partnerLineChartBlock__2qGsV .partner-line-chart-block-module_amount_raised__6ljOa {\n margin: 5px; } }\n";
29122
- var cls$g = {"partnerLineChartBlock":"partner-line-chart-block-module_partnerLineChartBlock__2qGsV","chartWrapper":"partner-line-chart-block-module_chartWrapper__2qobv","chartStats":"partner-line-chart-block-module_chartStats__yfboP","chartStatsItem":"partner-line-chart-block-module_chartStatsItem__UDe3C","amount_raised":"partner-line-chart-block-module_amount_raised__6ljOa","highlight":"partner-line-chart-block-module_highlight__1dTYh","title":"partner-line-chart-block-module_title__Rvr77","numeric":"partner-line-chart-block-module_numeric__1yBjL"};
29123
- styleInject(css$g);
29373
+ MyAccountStartFundraiseCard.propTypes = {
29374
+ className: _pt.string,
29375
+ title: _pt.string,
29376
+ description: _pt.string,
29377
+ buttonText: _pt.string,
29378
+ onClick: _pt.func,
29379
+ width: _pt.string.isRequired
29380
+ };
29124
29381
 
29125
- var PartnerLineChartBlock = function PartnerLineChartBlock(_ref) {
29126
- var currentYearData = _ref.currentYearData,
29127
- totalDonation = _ref.totalDonation,
29128
- chartData = _ref.chartData;
29129
- var formatterMoney = new Intl.NumberFormat("en-US", {
29130
- style: "currency",
29131
- currency: "USD",
29132
- minimumFractionDigits: 0
29133
- });
29382
+ var css$o = ".my-account-choose-charity-card-module_wrapper__3ne7s {\n height: 226px;\n display: flex;\n align-items: center;\n border-radius: 16px;\n background-color: #F7F7F8;\n font-family: \"Montserrat\", sans-serif;\n justify-content: space-between; }\n .my-account-choose-charity-card-module_wrapper__3ne7s .my-account-choose-charity-card-module_rightSide__2-yf1 {\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n justify-content: space-between;\n height: 100%;\n padding: 30px 30px 30px 0; }\n .my-account-choose-charity-card-module_wrapper__3ne7s .my-account-choose-charity-card-module_rightSide__2-yf1 .my-account-choose-charity-card-module_title__2CB3U {\n font-weight: 700;\n font-size: 24px;\n line-height: 32px;\n text-align: left;\n color: #404041;\n width: 80%; }\n .my-account-choose-charity-card-module_wrapper__3ne7s .my-account-choose-charity-card-module_leftSide__3S_e3 {\n width: 270px;\n height: 214px;\n background-image: url(./choose-charity.svg);\n margin-left: 50px; }\n\n@media all and (max-width: 768px) {\n .my-account-choose-charity-card-module_wrapper__3ne7s {\n height: 200px;\n padding: 20px;\n overflow: hidden; }\n .my-account-choose-charity-card-module_wrapper__3ne7s .my-account-choose-charity-card-module_leftSide__3S_e3 {\n height: 100%;\n margin-left: 0;\n background-position: center;\n background-size: cover; }\n .my-account-choose-charity-card-module_wrapper__3ne7s .my-account-choose-charity-card-module_rightSide__2-yf1 {\n padding: 10px;\n margin-left: 10%; }\n .my-account-choose-charity-card-module_wrapper__3ne7s .my-account-choose-charity-card-module_rightSide__2-yf1 .my-account-choose-charity-card-module_title__2CB3U {\n width: 100%;\n font-size: 22px; } }\n\n@media all and (max-width: 480px) {\n .my-account-choose-charity-card-module_wrapper__3ne7s {\n height: 200px;\n padding: 20px;\n overflow: hidden; }\n .my-account-choose-charity-card-module_wrapper__3ne7s .my-account-choose-charity-card-module_leftSide__3S_e3 {\n height: 100%; }\n .my-account-choose-charity-card-module_wrapper__3ne7s .my-account-choose-charity-card-module_rightSide__2-yf1 {\n padding: 10px;\n justify-content: space-around;\n z-index: 1; }\n .my-account-choose-charity-card-module_wrapper__3ne7s .my-account-choose-charity-card-module_rightSide__2-yf1 .my-account-choose-charity-card-module_title__2CB3U {\n font-size: 20px;\n line-height: 24px; } }\n";
29383
+ var cls$o = {"wrapper":"my-account-choose-charity-card-module_wrapper__3ne7s","rightSide":"my-account-choose-charity-card-module_rightSide__2-yf1","title":"my-account-choose-charity-card-module_title__2CB3U","leftSide":"my-account-choose-charity-card-module_leftSide__3S_e3"};
29384
+ styleInject(css$o);
29385
+
29386
+ var MyAccountChooseCharityCard = function MyAccountChooseCharityCard(_ref) {
29387
+ var _ref$className = _ref.className,
29388
+ className = _ref$className === void 0 ? "" : _ref$className,
29389
+ _ref$title = _ref.title,
29390
+ title = _ref$title === void 0 ? "" : _ref$title,
29391
+ _ref$buttonText = _ref.buttonText,
29392
+ buttonText = _ref$buttonText === void 0 ? "" : _ref$buttonText,
29393
+ onClick = _ref.onClick,
29394
+ _ref$width = _ref.width,
29395
+ width = _ref$width === void 0 ? "inherit" : _ref$width;
29134
29396
  return React.createElement("div", {
29135
- className: cls$g.partnerLineChartBlock
29136
- }, React.createElement("div", {
29137
- className: cls$g.chartWrapper
29138
- }, React.createElement(PartnerLineChart, {
29139
- chartData: chartData
29140
- })), React.createElement("div", {
29141
- className: cls$g.chartStatsWrap
29142
- }, React.createElement("div", null, React.createElement("div", null, React.createElement("div", {
29143
- className: cls$g.chartStats
29397
+ className: classnames(cls$o.wrapper, className),
29398
+ style: {
29399
+ width: width
29400
+ }
29144
29401
  }, React.createElement("div", {
29145
- className: cls$g.chartStatsItem
29402
+ className: cls$o.leftSide
29403
+ }), React.createElement("div", {
29404
+ className: cls$o.rightSide
29146
29405
  }, React.createElement("div", {
29147
- className: cls$g.amount_raised
29406
+ className: cls$o.title
29407
+ }, title), React.createElement(Button, {
29408
+ raised: true,
29409
+ display: true,
29410
+ outlined: true,
29411
+ style: {
29412
+ padding: "16px 32px",
29413
+ backgroundColor: "white",
29414
+ color: "#2D8A75",
29415
+ height: "56px",
29416
+ borderRadius: "8px",
29417
+ border: "1px solid #2D8A75"
29418
+ },
29419
+ onClick: onClick
29420
+ }, buttonText)));
29421
+ };
29422
+
29423
+ MyAccountChooseCharityCard.propTypes = {
29424
+ className: _pt.string,
29425
+ title: _pt.string,
29426
+ description: _pt.string,
29427
+ buttonText: _pt.string,
29428
+ onClick: _pt.func,
29429
+ width: _pt.string.isRequired
29430
+ };
29431
+
29432
+ var css$p = ".favorite-charity-item-module_wrapper__1X4xw {\n height: 96px;\n display: flex;\n align-items: center;\n border-radius: 8px;\n border: 1px solid #2D8A75;\n font-family: \"Montserrat\", sans-serif;\n overflow: hidden;\n box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.13), 0 1px 1px 0 rgba(0, 0, 0, 0.11); }\n .favorite-charity-item-module_wrapper__1X4xw .favorite-charity-item-module_charityItem__1-b9_ {\n width: 100%;\n height: 100%;\n position: relative;\n display: flex; }\n .favorite-charity-item-module_wrapper__1X4xw .favorite-charity-item-module_charityItem__1-b9_ .favorite-charity-item-module_leftSide__2CNrs {\n height: 100%;\n width: 80px;\n display: flex;\n justify-content: center;\n align-items: center; }\n .favorite-charity-item-module_wrapper__1X4xw .favorite-charity-item-module_charityItem__1-b9_ .favorite-charity-item-module_leftSide__2CNrs .favorite-charity-item-module_btnHeart__2lRBH {\n position: absolute;\n top: 6px;\n left: 6px;\n width: 32px;\n height: 32px;\n display: flex;\n align-items: center;\n justify-content: center; }\n .favorite-charity-item-module_wrapper__1X4xw .favorite-charity-item-module_charityItem__1-b9_ .favorite-charity-item-module_leftSide__2CNrs .favorite-charity-item-module_btnHeart__2lRBH .mdc-icon-button__icon {\n height: 24px; }\n .favorite-charity-item-module_wrapper__1X4xw .favorite-charity-item-module_charityItem__1-b9_ .favorite-charity-item-module_leftSide__2CNrs .favorite-charity-item-module_btnHeart__2lRBH .mdc-icon-button__icon .icon {\n color: #2D8A75; }\n .favorite-charity-item-module_wrapper__1X4xw .favorite-charity-item-module_charityItem__1-b9_ .favorite-charity-item-module_leftSide__2CNrs .favorite-charity-item-module_charityLogo__1zHoD img {\n width: 100%;\n height: 100%; }\n .favorite-charity-item-module_wrapper__1X4xw .favorite-charity-item-module_charityItem__1-b9_ .favorite-charity-item-module_rightSide__3Pb-L {\n width: 100%;\n height: 100%; }\n .favorite-charity-item-module_wrapper__1X4xw .favorite-charity-item-module_charityItem__1-b9_ .favorite-charity-item-module_rightSide__3Pb-L .favorite-charity-item-module_charityNameLink__2MR3L {\n text-decoration: none;\n color: #404041; }\n .favorite-charity-item-module_wrapper__1X4xw .favorite-charity-item-module_charityItem__1-b9_ .favorite-charity-item-module_rightSide__3Pb-L .favorite-charity-item-module_charityName__2AgTF {\n padding: 22px 12px 22px 8px;\n font-size: 14px;\n height: 100%;\n display: flex;\n align-items: center; }\n";
29433
+ var cls$p = {"wrapper":"favorite-charity-item-module_wrapper__1X4xw","charityItem":"favorite-charity-item-module_charityItem__1-b9_","leftSide":"favorite-charity-item-module_leftSide__2CNrs","btnHeart":"favorite-charity-item-module_btnHeart__2lRBH","charityLogo":"favorite-charity-item-module_charityLogo__1zHoD","rightSide":"favorite-charity-item-module_rightSide__3Pb-L","charityNameLink":"favorite-charity-item-module_charityNameLink__2MR3L","charityName":"favorite-charity-item-module_charityName__2AgTF"};
29434
+ styleInject(css$p);
29435
+
29436
+ const img$j = "data:image/png;base64,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";
29437
+
29438
+ var FavoriteCharityItem = function FavoriteCharityItem(_ref) {
29439
+ var className = _ref.className,
29440
+ index = _ref.index,
29441
+ _ref$charityLogoLink = _ref.charityLogoLink,
29442
+ charityLogoLink = _ref$charityLogoLink === void 0 ? "" : _ref$charityLogoLink,
29443
+ _ref$charityName = _ref.charityName,
29444
+ charityName = _ref$charityName === void 0 ? "" : _ref$charityName,
29445
+ charityFavorites = _ref.charityFavorites,
29446
+ handleClick = _ref.handleClick,
29447
+ handleClickItem = _ref.handleClickItem,
29448
+ showHeartToggle = _ref.showHeartToggle,
29449
+ charityTextLink = _ref.charityTextLink,
29450
+ _ref$width = _ref.width,
29451
+ width = _ref$width === void 0 ? "inherit" : _ref$width;
29452
+ return React.createElement("div", {
29453
+ className: classnames(cls$p.wrapper, className),
29454
+ style: {
29455
+ width: width
29456
+ }
29148
29457
  }, React.createElement("div", {
29149
- className: cls$g.highlight
29150
- }, "Donations this financial year ", React.createElement("span", null, "(July - June)")), React.createElement("div", {
29151
- className: cls$g.numeric
29152
- }, formatterMoney.format(currentYearData.reduce(function (a, b) {
29153
- return parseFloat(a) + parseFloat(b);
29154
- }, 0))))), React.createElement("div", {
29155
- className: cls$g.chartStatsItem
29458
+ className: classnames(cls$p.charityItem, "charityItem"),
29459
+ key: index,
29460
+ onClick: handleClickItem,
29461
+ style: {
29462
+ backgroundColor: showHeartToggle ? "#FFFFFF" : "#F2F8F1"
29463
+ }
29156
29464
  }, React.createElement("div", {
29157
- className: cls$g.amount_raised
29465
+ className: cls$p.leftSide
29466
+ }, showHeartToggle && React.createElement(HeartToggle, {
29467
+ value: !!charityFavorites,
29468
+ onChange: handleClick,
29469
+ active: React.createElement(Icon, {
29470
+ icon: "favorite_outline"
29471
+ }),
29472
+ inactive: React.createElement(Icon, {
29473
+ icon: "favorite",
29474
+ color: "accent"
29475
+ }),
29476
+ className: classnames(cls$p.btnHeart, "btn-heart")
29477
+ }), React.createElement("div", {
29478
+ className: cls$p.charityLogo,
29479
+ style: {
29480
+ margin: showHeartToggle ? "24px 0 24px 32px" : "12px 0 16px 12px",
29481
+ width: showHeartToggle ? "48px" : "77px",
29482
+ height: showHeartToggle ? "48px" : "68px"
29483
+ }
29484
+ }, showHeartToggle ? React.createElement("img", {
29485
+ src: charityLogoLink,
29486
+ alt: "Charity Logo"
29487
+ }) : React.createElement("img", {
29488
+ src: img$j,
29489
+ alt: "Charity Logo"
29490
+ }))), React.createElement("div", {
29491
+ className: cls$p.rightSide
29492
+ }, React.createElement("a", {
29493
+ href: charityTextLink,
29494
+ className: cls$p.charityNameLink
29158
29495
  }, React.createElement("div", {
29159
- className: cls$g.highlight
29160
- }, "Donations this calendar year ", React.createElement("span", null, "(Jan - Dec)")), React.createElement("div", {
29161
- className: cls$g.numeric
29162
- }, "$", totalDonation))))))));
29496
+ className: classnames(cls$p.charityName, "text")
29497
+ }, charityName)))));
29163
29498
  };
29164
29499
 
29165
- PartnerLineChartBlock.propTypes = {
29166
- currentYearData: _pt.any.isRequired,
29167
- totalDonation: _pt.string.isRequired,
29168
- chartData: _pt.shape({
29169
- current_year: _pt.any.isRequired,
29170
- months_label: _pt.any.isRequired,
29171
- requested_year: _pt.any.isRequired
29172
- }).isRequired
29500
+ FavoriteCharityItem.propTypes = {
29501
+ className: _pt.string,
29502
+ index: _pt.number,
29503
+ charityLogoLink: _pt.string,
29504
+ charityName: _pt.string,
29505
+ charityFavorites: _pt.bool,
29506
+ handleClick: _pt.func,
29507
+ handleClickItem: _pt.func,
29508
+ showHeartToggle: _pt.bool,
29509
+ charityTextLink: _pt.string,
29510
+ width: _pt.string.isRequired
29173
29511
  };
29174
29512
 
29175
- var css$h = ".partner-monthly-donations-module_wrapper__1bToV {\n width: 100%;\n margin: 0 20px; }\n .partner-monthly-donations-module_wrapper__1bToV .partner-monthly-donations-module_title__2qI2n {\n font-size: 24px;\n font-weight: bold;\n line-height: 1.4;\n margin-bottom: 5px;\n font-family: \"Montserrat\", \"Roboto\", sans-serif; }\n .partner-monthly-donations-module_wrapper__1bToV .partner-monthly-donations-module_month_donation__2-0eX {\n display: flex;\n box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 29px;\n justify-content: space-around;\n border-radius: 10px;\n align-items: center;\n min-height: 152px; }\n .partner-monthly-donations-module_wrapper__1bToV .partner-monthly-donations-module_month_donation__2-0eX .partner-monthly-donations-module_month_donation_wrap__1lxLO {\n display: flex;\n align-items: center;\n justify-content: space-around;\n padding: 20px 0 20px 20px;\n width: 100%; }\n .partner-monthly-donations-module_wrapper__1bToV .partner-monthly-donations-module_month_donation__2-0eX .partner-monthly-donations-module_month_donation_text__1wLhB {\n font-size: 24px;\n line-height: 1.5;\n font-family: \"Montserrat\", \"Roboto\", sans-serif;\n font-weight: 500;\n color: #404041; }\n .partner-monthly-donations-module_wrapper__1bToV .partner-monthly-donations-module_month_donation__2-0eX .partner-monthly-donations-module_month_donation_item__hXu3n {\n margin: 0 20px;\n color: #fc595d;\n font-size: 36px;\n font-weight: bold;\n font-family: \"Arial\"; }\n .partner-monthly-donations-module_wrapper__1bToV .partner-monthly-donations-module_month_donation__2-0eX .partner-monthly-donations-module_month_donation_button_wrap__19gRb {\n padding-right: 20px; }\n .partner-monthly-donations-module_wrapper__1bToV .partner-monthly-donations-module_month_donation__2-0eX .partner-monthly-donations-module_month_donation_button_wrap__19gRb .partner-monthly-donations-module_month_donation_button__3F4P8 {\n width: 200px;\n border-radius: 60px;\n background: linear-gradient(to right, #fc595d, #ffa05a);\n padding: 8px;\n float: right;\n margin: 0 10px;\n align-items: center;\n display: flex;\n justify-content: center; }\n .partner-monthly-donations-module_wrapper__1bToV .partner-monthly-donations-module_month_donation__2-0eX .partner-monthly-donations-module_month_donation_button_wrap__19gRb .partner-monthly-donations-module_month_donation_button__3F4P8 a {\n color: white !important;\n font-family: \"Montserrat\", \"Roboto\", sans-serif;\n font-size: 14px;\n cursor: pointer;\n text-decoration: none;\n font-weight: 600; }\n\n@media (max-width: 920px) {\n .partner-monthly-donations-module_wrapper__1bToV .partner-monthly-donations-module_month_donation__2-0eX {\n flex-direction: column; }\n .partner-monthly-donations-module_wrapper__1bToV .partner-monthly-donations-module_month_donation__2-0eX .partner-monthly-donations-module_month_donation_text__1wLhB {\n font-size: 22px; }\n .partner-monthly-donations-module_wrapper__1bToV .partner-monthly-donations-module_month_donation__2-0eX .partner-monthly-donations-module_month_donation_wrap__1lxLO {\n flex-direction: column; }\n .partner-monthly-donations-module_wrapper__1bToV .partner-monthly-donations-module_month_donation__2-0eX .partner-monthly-donations-module_month_donation_wrap__1lxLO .partner-monthly-donations-module_month_donation_text__1wLhB {\n margin: 0; }\n .partner-monthly-donations-module_wrapper__1bToV .partner-monthly-donations-module_month_donation__2-0eX .partner-monthly-donations-module_month_donation_item__hXu3n {\n font-size: 30px; }\n .partner-monthly-donations-module_wrapper__1bToV .partner-monthly-donations-module_month_donation__2-0eX .partner-monthly-donations-module_month_donation_button_wrap__19gRb {\n padding-right: 0;\n padding-bottom: 20px; } }\n";
29176
- var cls$h = {"wrapper":"partner-monthly-donations-module_wrapper__1bToV","title":"partner-monthly-donations-module_title__2qI2n","month_donation":"partner-monthly-donations-module_month_donation__2-0eX","month_donation_wrap":"partner-monthly-donations-module_month_donation_wrap__1lxLO","month_donation_text":"partner-monthly-donations-module_month_donation_text__1wLhB","month_donation_item":"partner-monthly-donations-module_month_donation_item__hXu3n","month_donation_button_wrap":"partner-monthly-donations-module_month_donation_button_wrap__19gRb","month_donation_button":"partner-monthly-donations-module_month_donation_button__3F4P8"};
29177
- styleInject(css$h);
29513
+ var css$q = ".my-account-sidebar-module_wrapper__2prH6 {\n transition: all 0.2s ease;\n background: #fff;\n height: 100vh;\n box-shadow: 2px 2px 8px 0px rgba(123, 109, 109, 0.25);\n font-family: Montserrat;\n font-size: 14px;\n font-weight: 400;\n color: #404041; }\n .my-account-sidebar-module_wrapper__2prH6.my-account-sidebar-module_expand__1m2Vs {\n min-width: 260px;\n width: 260px; }\n .my-account-sidebar-module_wrapper__2prH6.my-account-sidebar-module_collapse__2X0m7 {\n min-width: 64px;\n width: 64px; }\n .my-account-sidebar-module_wrapper__2prH6.my-account-sidebar-module_collapse__2X0m7 p.my-account-sidebar-module_label__3RALd,\n .my-account-sidebar-module_wrapper__2prH6.my-account-sidebar-module_collapse__2X0m7 .my-account-sidebar-module_additional__1EeN2 {\n opacity: 0; }\n .my-account-sidebar-module_wrapper__2prH6 .my-account-sidebar-module_active__f-nw8 {\n background: linear-gradient(90deg, #2d8a75 0%, #42ccae 97.5%); }\n .my-account-sidebar-module_wrapper__2prH6 .my-account-sidebar-module_active__f-nw8 p {\n color: #fff;\n font-weight: 700; }\n .my-account-sidebar-module_wrapper__2prH6 .my-account-sidebar-module_active__f-nw8 svg path {\n fill: #fff !important; }\n .my-account-sidebar-module_wrapper__2prH6 .my-account-sidebar-module_item__1nSgc {\n display: flex;\n align-items: center;\n padding-left: 16px;\n text-decoration: none;\n color: #404041;\n height: 50px;\n cursor: pointer; }\n .my-account-sidebar-module_wrapper__2prH6 .my-account-sidebar-module_item__1nSgc p.my-account-sidebar-module_label__3RALd {\n padding-left: 8px;\n position: absolute;\n left: 58px; }\n .my-account-sidebar-module_wrapper__2prH6 .my-account-sidebar-module_item__1nSgc svg {\n width: 36px; }\n .my-account-sidebar-module_wrapper__2prH6 .my-account-sidebar-module_item__1nSgc:hover {\n background: linear-gradient(90deg, #2d8a75 0%, #42ccae 97.5%); }\n .my-account-sidebar-module_wrapper__2prH6 .my-account-sidebar-module_item__1nSgc:hover p {\n color: #fff;\n font-weight: 700; }\n .my-account-sidebar-module_wrapper__2prH6 .my-account-sidebar-module_item__1nSgc:hover svg path {\n fill: #fff !important; }\n .my-account-sidebar-module_wrapper__2prH6 .my-account-sidebar-module_item__1nSgc svg path {\n fill: #2d8a75; }\n .my-account-sidebar-module_wrapper__2prH6 .my-account-sidebar-module_item__1nSgc .my-account-sidebar-module_label__3RALd {\n opacity: 1; }\n .my-account-sidebar-module_wrapper__2prH6 .my-account-sidebar-module_item__1nSgc .my-account-sidebar-module_hiden__xtlWO {\n width: 0; }\n .my-account-sidebar-module_wrapper__2prH6 .my-account-sidebar-module_account__sruAN {\n border-bottom: 1px solid #e2e2e2;\n border-bottom: 1px solid #e2e2e2;\n border-bottom: 1px solid var(--Stroke, #e2e2e2);\n border-top: 1px solid #e2e2e2;\n border-top: 1px solid #e2e2e2;\n border-top: 1px solid var(--Stroke, #e2e2e2);\n display: flex;\n justify-content: space-between; }\n .my-account-sidebar-module_wrapper__2prH6 .my-account-sidebar-module_account__sruAN .my-account-sidebar-module_coverLabel__2obOx {\n display: flex;\n align-items: center; }\n .my-account-sidebar-module_wrapper__2prH6 .my-account-sidebar-module_collapse__2X0m7 {\n border-bottom: 1px solid #e2e2e2;\n border-bottom: 1px solid #e2e2e2;\n border-bottom: 1px solid var(--Stroke, #e2e2e2); }\n .my-account-sidebar-module_wrapper__2prH6 .my-account-sidebar-module_additional__1EeN2 svg path {\n fill: #acacac; }\n";
29514
+ var cls$q = {"wrapper":"my-account-sidebar-module_wrapper__2prH6","expand":"my-account-sidebar-module_expand__1m2Vs","collapse":"my-account-sidebar-module_collapse__2X0m7","label":"my-account-sidebar-module_label__3RALd","additional":"my-account-sidebar-module_additional__1EeN2","active":"my-account-sidebar-module_active__f-nw8","item":"my-account-sidebar-module_item__1nSgc","hiden":"my-account-sidebar-module_hiden__xtlWO","account":"my-account-sidebar-module_account__sruAN","coverLabel":"my-account-sidebar-module_coverLabel__2obOx"};
29515
+ styleInject(css$q);
29516
+
29517
+ /* eslint-disable react/display-name */
29518
+ var Icons = {
29519
+ dashboard: function dashboard() {
29520
+ return React.createElement("svg", {
29521
+ width: "36",
29522
+ height: "36",
29523
+ viewBox: "0 0 36 36",
29524
+ fill: "none",
29525
+ xmlns: "http://www.w3.org/2000/svg"
29526
+ }, React.createElement("path", {
29527
+ d: "M27.5104 10.4937C27.3581 10.3347 27.175 10.2088 26.9725 10.124C26.77 10.0391 26.5524 9.99695 26.3332 10.0002H9.66665C9.22463 10.0002 8.80071 10.1772 8.48815 10.4924C8.17559 10.8076 8 11.2351 8 11.6808V24.4538C8 24.8996 8.17559 25.3271 8.48815 25.6422C8.80071 25.9574 9.22463 26.1345 9.66665 26.1345H26.3332C26.7752 26.1345 27.1991 25.9574 27.5117 25.6422C27.8242 25.3271 27.9998 24.8996 27.9998 24.4538V11.6808C28.003 11.4597 27.9613 11.2403 27.8771 11.0361C27.7929 10.8319 27.6681 10.6473 27.5104 10.4937ZM26.6665 24.4538C26.6653 24.5426 26.6298 24.6274 26.5676 24.6902C26.5053 24.753 26.4212 24.7888 26.3332 24.79H9.66665C9.57849 24.7892 9.49417 24.7535 9.43183 24.6906C9.36949 24.6278 9.33411 24.5427 9.33332 24.4538V11.6808C9.33411 11.5919 9.36949 11.5069 9.43183 11.444C9.49417 11.3812 9.57849 11.3455 9.66665 11.3447H26.3332C26.4212 11.3459 26.5053 11.3817 26.5676 11.4445C26.6298 11.5072 26.6653 11.5921 26.6665 11.6808V24.4538Z",
29528
+ fill: "white"
29529
+ }), React.createElement("path", {
29530
+ d: "M13.3346 19.4121H10.668V23.4457H13.3346V19.4121Z",
29531
+ fill: "white"
29532
+ }), React.createElement("path", {
29533
+ d: "M17.3346 14.0339H14.668V23.4456H17.3346V14.0339Z",
29534
+ fill: "white"
29535
+ }), React.createElement("path", {
29536
+ d: "M21.3346 16.7229H18.668V23.4455H21.3346V16.7229Z",
29537
+ fill: "white"
29538
+ }), React.createElement("path", {
29539
+ d: "M25.3327 12.6897H22.666V23.4459H25.3327V12.6897Z",
29540
+ fill: "white"
29541
+ }));
29542
+ },
29543
+ collapse: function collapse() {
29544
+ return React.createElement("svg", {
29545
+ fill: "currentColor",
29546
+ preserveAspectRatio: "xMidYMid meet",
29547
+ height: "32",
29548
+ width: "32",
29549
+ viewBox: "0 0 40 40"
29550
+ }, React.createElement("g", null, React.createElement("path", {
29551
+ d: "m25.7 12.3l-7.7 7.7 7.7 7.7-2.3 2.3-10-10 10-10z"
29552
+ })));
29553
+ },
29554
+ expand: function expand() {
29555
+ return React.createElement("svg", {
29556
+ fill: "currentColor",
29557
+ preserveAspectRatio: "xMidYMid meet",
29558
+ height: "32",
29559
+ width: "32",
29560
+ viewBox: "0 0 40 40"
29561
+ }, React.createElement("g", null, React.createElement("path", {
29562
+ d: "m16.6 10l10 10-10 10-2.3-2.3 7.7-7.7-7.7-7.7z"
29563
+ })));
29564
+ },
29565
+ donations: function donations() {
29566
+ return React.createElement("svg", {
29567
+ width: "36",
29568
+ height: "36",
29569
+ viewBox: "0 0 36 36",
29570
+ fill: "none",
29571
+ xmlns: "http://www.w3.org/2000/svg"
29572
+ }, React.createElement("path", {
29573
+ d: "M17.275 25.175H18.65V23.875C19.6667 23.7583 20.4583 23.4458 21.025 22.9375C21.5917 22.4292 21.875 21.75 21.875 20.9C21.875 20.05 21.6333 19.3583 21.15 18.825C20.6667 18.2917 19.85 17.7833 18.7 17.3C17.7333 16.9 17.0333 16.5417 16.6 16.225C16.1667 15.9083 15.95 15.4833 15.95 14.95C15.95 14.4333 16.1375 14.025 16.5125 13.725C16.8875 13.425 17.4 13.275 18.05 13.275C18.55 13.275 18.9833 13.3917 19.35 13.625C19.7167 13.8583 20.025 14.2083 20.275 14.675L21.475 14.1C21.1917 13.5167 20.8167 13.0583 20.35 12.725C19.8833 12.3917 19.3333 12.1917 18.7 12.125V10.85H17.325V12.125C16.475 12.2417 15.8042 12.5542 15.3125 13.0625C14.8208 13.5708 14.575 14.2 14.575 14.95C14.575 15.7667 14.825 16.4167 15.325 16.9C15.825 17.3833 16.575 17.8333 17.575 18.25C18.6917 18.7167 19.4583 19.1375 19.875 19.5125C20.2917 19.8875 20.5 20.35 20.5 20.9C20.5 21.4333 20.2792 21.8625 19.8375 22.1875C19.3958 22.5125 18.8417 22.675 18.175 22.675C17.525 22.675 16.9458 22.4917 16.4375 22.125C15.9292 21.7583 15.575 21.2583 15.375 20.625L14.1 21.05C14.45 21.8167 14.8792 22.4208 15.3875 22.8625C15.8958 23.3042 16.525 23.625 17.275 23.825V25.175ZM18 28C16.6333 28 15.3417 27.7375 14.125 27.2125C12.9083 26.6875 11.8458 25.9708 10.9375 25.0625C10.0292 24.1542 9.3125 23.0917 8.7875 21.875C8.2625 20.6583 8 19.3667 8 18C8 16.6167 8.2625 15.3167 8.7875 14.1C9.3125 12.8833 10.0292 11.825 10.9375 10.925C11.8458 10.025 12.9083 9.3125 14.125 8.7875C15.3417 8.2625 16.6333 8 18 8C19.3833 8 20.6833 8.2625 21.9 8.7875C23.1167 9.3125 24.175 10.025 25.075 10.925C25.975 11.825 26.6875 12.8833 27.2125 14.1C27.7375 15.3167 28 16.6167 28 18C28 19.3667 27.7375 20.6583 27.2125 21.875C26.6875 23.0917 25.975 24.1542 25.075 25.0625C24.175 25.9708 23.1167 26.6875 21.9 27.2125C20.6833 27.7375 19.3833 28 18 28ZM18 26.5C20.3667 26.5 22.375 25.6708 24.025 24.0125C25.675 22.3542 26.5 20.35 26.5 18C26.5 15.6333 25.675 13.625 24.025 11.975C22.375 10.325 20.3667 9.5 18 9.5C15.65 9.5 13.6458 10.325 11.9875 11.975C10.3292 13.625 9.5 15.6333 9.5 18C9.5 20.35 10.3292 22.3542 11.9875 24.0125C13.6458 25.6708 15.65 26.5 18 26.5Z",
29574
+ fill: "#2D8A75"
29575
+ }));
29576
+ },
29577
+ account: function account() {
29578
+ return React.createElement("svg", {
29579
+ xmlns: "http://www.w3.org/2000/svg",
29580
+ width: "36",
29581
+ height: "36",
29582
+ viewBox: "0 0 36 36",
29583
+ fill: "none"
29584
+ }, React.createElement("path", {
29585
+ d: "M15.7 28L15.2 24.85C14.8833 24.7333 14.55 24.575 14.2 24.375C13.85 24.175 13.5417 23.9667 13.275 23.75L10.325 25.1L8 21L10.7 19.025C10.6667 18.875 10.6458 18.7042 10.6375 18.5125C10.6292 18.3208 10.625 18.15 10.625 18C10.625 17.85 10.6292 17.6792 10.6375 17.4875C10.6458 17.2958 10.6667 17.125 10.7 16.975L8 15L10.325 10.9L13.275 12.25C13.5417 12.0333 13.85 11.825 14.2 11.625C14.55 11.425 14.8833 11.275 15.2 11.175L15.7 8H20.3L20.8 11.15C21.1167 11.2667 21.4542 11.4208 21.8125 11.6125C22.1708 11.8042 22.475 12.0167 22.725 12.25L25.675 10.9L28 15L25.3 16.925C25.3333 17.0917 25.3542 17.2708 25.3625 17.4625C25.3708 17.6542 25.375 17.8333 25.375 18C25.375 18.1667 25.3708 18.3417 25.3625 18.525C25.3542 18.7083 25.3333 18.8833 25.3 19.05L28 21L25.675 25.1L22.725 23.75C22.4583 23.9667 22.1542 24.1792 21.8125 24.3875C21.4708 24.5958 21.1333 24.75 20.8 24.85L20.3 28H15.7ZM18 21.25C18.9 21.25 19.6667 20.9333 20.3 20.3C20.9333 19.6667 21.25 18.9 21.25 18C21.25 17.1 20.9333 16.3333 20.3 15.7C19.6667 15.0667 18.9 14.75 18 14.75C17.1 14.75 16.3333 15.0667 15.7 15.7C15.0667 16.3333 14.75 17.1 14.75 18C14.75 18.9 15.0667 19.6667 15.7 20.3C16.3333 20.9333 17.1 21.25 18 21.25ZM18 19.75C17.5167 19.75 17.1042 19.5792 16.7625 19.2375C16.4208 18.8958 16.25 18.4833 16.25 18C16.25 17.5167 16.4208 17.1042 16.7625 16.7625C17.1042 16.4208 17.5167 16.25 18 16.25C18.4833 16.25 18.8958 16.4208 19.2375 16.7625C19.5792 17.1042 19.75 17.5167 19.75 18C19.75 18.4833 19.5792 18.8958 19.2375 19.2375C18.8958 19.5792 18.4833 19.75 18 19.75ZM16.9 26.5H19.1L19.45 23.7C20 23.5667 20.5208 23.3583 21.0125 23.075C21.5042 22.7917 21.95 22.45 22.35 22.05L25 23.2L26 21.4L23.65 19.675C23.7167 19.3917 23.7708 19.1125 23.8125 18.8375C23.8542 18.5625 23.875 18.2833 23.875 18C23.875 17.7167 23.8583 17.4375 23.825 17.1625C23.7917 16.8875 23.7333 16.6083 23.65 16.325L26 14.6L25 12.8L22.35 13.95C21.9667 13.5167 21.5333 13.1542 21.05 12.8625C20.5667 12.5708 20.0333 12.3833 19.45 12.3L19.1 9.5H16.9L16.55 12.3C15.9833 12.4167 15.4542 12.6167 14.9625 12.9C14.4708 13.1833 14.0333 13.5333 13.65 13.95L11 12.8L10 14.6L12.35 16.325C12.2833 16.6083 12.2292 16.8875 12.1875 17.1625C12.1458 17.4375 12.125 17.7167 12.125 18C12.125 18.2833 12.1458 18.5625 12.1875 18.8375C12.2292 19.1125 12.2833 19.3917 12.35 19.675L10 21.4L11 23.2L13.65 22.05C14.05 22.45 14.4958 22.7917 14.9875 23.075C15.4792 23.3583 16 23.5667 16.55 23.7L16.9 26.5Z",
29586
+ fill: "#2D8A75"
29587
+ }));
29588
+ },
29589
+ support: function support() {
29590
+ return React.createElement("svg", {
29591
+ xmlns: "http://www.w3.org/2000/svg",
29592
+ width: "36",
29593
+ height: "36",
29594
+ viewBox: "0 0 36 36",
29595
+ fill: "none"
29596
+ }, React.createElement("path", {
29597
+ d: "M18.875 29L18.625 26.25H17.625C15.2417 26.25 13.2083 25.4083 11.525 23.725C9.84167 22.0417 9 20.0083 9 17.625C9 15.2417 9.84583 13.2083 11.5375 11.525C13.2292 9.84167 15.275 9 17.675 9C18.8583 9 19.9542 9.2125 20.9625 9.6375C21.9708 10.0625 22.85 10.6583 23.6 11.425C24.35 12.1917 24.9375 13.0958 25.3625 14.1375C25.7875 15.1792 26 16.3167 26 17.55C26 18.65 25.8375 19.75 25.5125 20.85C25.1875 21.95 24.7167 23 24.1 24C23.4833 25 22.7333 25.925 21.85 26.775C20.9667 27.625 19.975 28.3667 18.875 29ZM20.125 26.3C21.4917 25.15 22.5625 23.7958 23.3375 22.2375C24.1125 20.6792 24.5 19.1167 24.5 17.55C24.5 15.4833 23.8542 13.7917 22.5625 12.475C21.2708 11.1583 19.6417 10.5 17.675 10.5C15.675 10.5 13.9792 11.1958 12.5875 12.5875C11.1958 13.9792 10.5 15.6583 10.5 17.625C10.5 19.5917 11.1958 21.2708 12.5875 22.6625C13.9792 24.0542 15.6583 24.75 17.625 24.75H20.125V26.3ZM17.675 23.425C17.9417 23.425 18.1667 23.3333 18.35 23.15C18.5333 22.9667 18.625 22.7417 18.625 22.475C18.625 22.2083 18.5333 21.9833 18.35 21.8C18.1667 21.6167 17.9417 21.525 17.675 21.525C17.4083 21.525 17.1833 21.6167 17 21.8C16.8167 21.9833 16.725 22.2083 16.725 22.475C16.725 22.7417 16.8167 22.9667 17 23.15C17.1833 23.3333 17.4083 23.425 17.675 23.425ZM17 20.025H18.25C18.25 19.6083 18.3208 19.2625 18.4625 18.9875C18.6042 18.7125 18.9 18.35 19.35 17.9C19.8 17.45 20.1167 17.0375 20.3 16.6625C20.4833 16.2875 20.575 15.8833 20.575 15.45C20.575 14.7 20.3208 14.0833 19.8125 13.6C19.3042 13.1167 18.625 12.875 17.775 12.875C17.075 12.875 16.45 13.0583 15.9 13.425C15.35 13.7917 14.9417 14.2917 14.675 14.925L15.825 15.4C16.0083 14.9667 16.2625 14.6458 16.5875 14.4375C16.9125 14.2292 17.2833 14.125 17.7 14.125C18.2 14.125 18.5917 14.2458 18.875 14.4875C19.1583 14.7292 19.3 15.05 19.3 15.45C19.3 15.7667 19.2083 16.0875 19.025 16.4125C18.8417 16.7375 18.5167 17.1417 18.05 17.625C17.6 18.0917 17.3125 18.4667 17.1875 18.75C17.0625 19.0333 17 19.4583 17 20.025Z",
29598
+ fill: "#2D8A75"
29599
+ }));
29600
+ },
29601
+ additional: function additional() {
29602
+ return React.createElement("svg", {
29603
+ xmlns: "http://www.w3.org/2000/svg",
29604
+ width: "35",
29605
+ height: "36",
29606
+ viewBox: "0 0 35 36",
29607
+ fill: "none"
29608
+ }, React.createElement("path", {
29609
+ d: "M16.7561 19.2439H10V16.7823H16.7561V10H19.2177V16.7823H26V19.2439H19.2177V26H16.7561V19.2439Z",
29610
+ fill: "#ACACAC"
29611
+ }));
29612
+ }
29613
+ };
29614
+
29615
+ var collapse = {
29616
+ id: "collapse",
29617
+ label: "Collapse Menu",
29618
+ icon: React.createElement(Icons.collapse, null)
29619
+ };
29620
+
29621
+ var MyAccountSidebar = function MyAccountSidebar(_ref) {
29622
+ var listMenu = _ref.listMenu,
29623
+ dashboard = _ref.dashboard,
29624
+ account = _ref.account,
29625
+ contract = _ref.contract;
29626
+
29627
+ var _useState = useState(dashboard.id),
29628
+ _useState2 = _slicedToArray(_useState, 2),
29629
+ tabActive = _useState2[0],
29630
+ setTabActive = _useState2[1];
29631
+
29632
+ var _useState3 = useState(true),
29633
+ _useState4 = _slicedToArray(_useState3, 2),
29634
+ isExpand = _useState4[0],
29635
+ setIsExpand = _useState4[1];
29636
+
29637
+ var handleOnChangeActiveTab = function handleOnChangeActiveTab(id) {
29638
+ setTabActive(id);
29639
+ };
29178
29640
 
29179
- var PartnerMonthlyDonations = function PartnerMonthlyDonations(_ref) {
29180
- var totalAmount = _ref.totalAmount,
29181
- numberOfDonations = _ref.numberOfDonations,
29182
- donationsLink = _ref.donationsLink;
29183
29641
  return React.createElement("div", {
29184
- className: cls$h.wrapper
29185
- }, React.createElement("div", {
29186
- className: cls$h.title
29187
- }, "This Month"), React.createElement("div", {
29188
- className: cls$h.month_donation
29189
- }, React.createElement("div", {
29190
- className: cls$h.month_donation_wrap
29191
- }, React.createElement("p", {
29192
- className: cls$h.month_donation_text
29193
- }, "Total donations this month"), React.createElement("span", {
29194
- className: cls$h.month_donation_item
29195
- }, "$", totalAmount || 0), React.createElement("span", {
29196
- className: cls$h.month_donation_item
29197
- }, numberOfDonations || 0)), React.createElement("div", {
29198
- className: cls$h.month_donation_button_wrap
29642
+ className: classnames(cls$q.wrapper, cls$q.sidebar, isExpand ? cls$q.expand : cls$q.collapse)
29643
+ }, dashboard && React.createElement("a", {
29644
+ className: classnames(cls$q.item, tabActive === dashboard.id && cls$q.active),
29645
+ onClick: function onClick() {
29646
+ return handleOnChangeActiveTab(dashboard.id);
29647
+ },
29648
+ href: dashboard.href
29649
+ }, dashboard.icon, React.createElement("p", {
29650
+ className: cls$q.label
29651
+ }, dashboard.label)), React.createElement("div", {
29652
+ className: cls$q.item,
29653
+ onClick: function onClick() {
29654
+ return setIsExpand(!isExpand);
29655
+ }
29656
+ }, isExpand ? React.createElement(Icons.collapse, null) : React.createElement(Icons.expand, null), React.createElement("p", {
29657
+ className: cls$q.label
29658
+ }, collapse.label)), listMenu.map(function (item) {
29659
+ return React.createElement("a", {
29660
+ key: item.id,
29661
+ className: classnames(cls$q.item, tabActive === item.id && cls$q.active),
29662
+ href: item.href,
29663
+ onClick: function onClick() {
29664
+ return handleOnChangeActiveTab(item.id);
29665
+ }
29666
+ }, item.icon, React.createElement("p", {
29667
+ className: cls$q.label
29668
+ }, item.label));
29669
+ }), account && React.createElement("a", {
29670
+ className: classnames(cls$q.item, cls$q.account, tabActive === account.id && cls$q.active),
29671
+ onClick: function onClick() {
29672
+ return handleOnChangeActiveTab(account.id);
29673
+ },
29674
+ href: account.href
29199
29675
  }, React.createElement("div", {
29200
- className: cls$h.month_donation_button
29201
- }, React.createElement("a", {
29202
- href: donationsLink
29203
- }, "Go to Donations ", ">>")))));
29676
+ className: cls$q.coverLabel
29677
+ }, account.icon, React.createElement("p", {
29678
+ className: cls$q.label
29679
+ }, account.label)), React.createElement("div", {
29680
+ className: cls$q.additional
29681
+ }, React.createElement(Icons.additional, null))), contract && React.createElement("a", {
29682
+ className: classnames(cls$q.item, tabActive === contract.id && cls$q.active),
29683
+ onClick: function onClick() {
29684
+ return handleOnChangeActiveTab(contract.id);
29685
+ },
29686
+ href: contract.href
29687
+ }, contract.icon, React.createElement("p", {
29688
+ className: cls$q.label
29689
+ }, contract.label)));
29204
29690
  };
29205
29691
 
29206
- PartnerMonthlyDonations.propTypes = {
29207
- totalAmount: _pt.number,
29208
- numberOfDonations: _pt.number,
29209
- donationsLink: _pt.string
29692
+ MyAccountSidebar.propTypes = {
29693
+ listMenu: _pt.any.isRequired,
29694
+ dashboard: _pt.shape({
29695
+ id: _pt.string.isRequired,
29696
+ icon: _pt.any.isRequired,
29697
+ label: _pt.string.isRequired,
29698
+ href: _pt.string
29699
+ }).isRequired,
29700
+ account: _pt.shape({
29701
+ id: _pt.string.isRequired,
29702
+ icon: _pt.any.isRequired,
29703
+ label: _pt.string.isRequired,
29704
+ href: _pt.string
29705
+ }),
29706
+ contract: _pt.shape({
29707
+ id: _pt.string.isRequired,
29708
+ icon: _pt.any.isRequired,
29709
+ label: _pt.string.isRequired,
29710
+ href: _pt.string
29711
+ })
29210
29712
  };
29211
29713
 
29212
- var css$i = ".partner-monthly-stats-module_wrapper__1M7HB {\n width: 100%;\n box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 29px;\n border-radius: 10px;\n padding: 20px;\n max-width: 420px;\n text-align: center;\n line-height: 1.5;\n min-width: 120px; }\n .partner-monthly-stats-module_wrapper__1M7HB .partner-monthly-stats-module_amount_raised__3DDen {\n min-height: 80px;\n display: flex;\n align-items: center;\n flex-direction: column;\n justify-content: center; }\n .partner-monthly-stats-module_wrapper__1M7HB .partner-monthly-stats-module_amount_raised__3DDen .partner-monthly-stats-module_numeric__39u6z {\n color: #FC595D;\n font-weight: bold; }\n .partner-monthly-stats-module_wrapper__1M7HB .partner-monthly-stats-module_amount_raised__3DDen .partner-monthly-stats-module_title__VRsZU {\n font-weight: bold;\n font-family: \"Arial\", Helvetica Neue, Helvetica, sans-serif;\n color: #404041; }\n";
29213
- var cls$i = {"wrapper":"partner-monthly-stats-module_wrapper__1M7HB","amount_raised":"partner-monthly-stats-module_amount_raised__3DDen","numeric":"partner-monthly-stats-module_numeric__39u6z","title":"partner-monthly-stats-module_title__VRsZU"};
29214
- styleInject(css$i);
29714
+ var css$r = ".my-account-frp-preview-module_wrapper__dNipd {\n border-radius: 16px;\n background: #fff;\n box-shadow: 1px 1px 8px 0px rgba(110, 110, 110, 0.1), 8px 8px 24px 0px rgba(139, 162, 179, 0.25);\n display: flex;\n font-family: Montserrat;\n cursor: pointer; }\n .my-account-frp-preview-module_wrapper__dNipd:hover .my-account-frp-preview-module_coverImage__2mHgG,\n .my-account-frp-preview-module_wrapper__dNipd:hover .my-account-frp-preview-module_imgOverlay__2nZSr {\n background: rgba(34, 39, 37, 0.2); }\n .my-account-frp-preview-module_wrapper__dNipd .my-account-frp-preview-module_coverImage__2mHgG {\n width: 75%;\n border-radius: 16px 0 0 16px;\n position: relative;\n cursor: pointer; }\n .my-account-frp-preview-module_wrapper__dNipd .my-account-frp-preview-module_coverImage__2mHgG .my-account-frp-preview-module_imgOverlay__2nZSr {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n border-radius: 16px 0 0 16px;\n z-index: 1;\n transition: 0.2s all; }\n .my-account-frp-preview-module_wrapper__dNipd .my-account-frp-preview-module_coverImage__2mHgG .my-account-frp-preview-module_boxImage__1ttYR {\n width: 100%;\n display: flex;\n justify-content: center; }\n .my-account-frp-preview-module_wrapper__dNipd .my-account-frp-preview-module_coverImage__2mHgG .my-account-frp-preview-module_boxImage__1ttYR img.my-account-frp-preview-module_image__1yL3f {\n width: auto;\n height: 100%;\n max-height: 460px;\n border-radius: 16px 0 0 16px; }\n .my-account-frp-preview-module_wrapper__dNipd .my-account-frp-preview-module_coverImage__2mHgG .my-account-frp-preview-module_boxImage__1ttYR .my-account-frp-preview-module_noImg__1hY6M {\n background: url(\"./background.png\") no-repeat;\n background-size: cover;\n width: 100%;\n height: 460px; }\n .my-account-frp-preview-module_wrapper__dNipd .my-account-frp-preview-module_coverImage__2mHgG .my-account-frp-preview-module_coverTitle__1sSn- {\n position: absolute;\n bottom: 0;\n width: 100%;\n min-height: 105px;\n border-radius: 0px 0px 0px 16px;\n opacity: 0.95;\n background: linear-gradient(90deg, #2d8a75 0%, #42ccae 97.5%);\n background: linear-gradient(90deg, #2d8a75 0%, #42ccae 97.5%);\n background: var(--Green-Linear, linear-gradient(90deg, #2d8a75 0%, #42ccae 97.5%)); }\n .my-account-frp-preview-module_wrapper__dNipd .my-account-frp-preview-module_coverImage__2mHgG .my-account-frp-preview-module_coverTitle__1sSn- .my-account-frp-preview-module_title__1x_bj {\n font-size: 24px;\n font-weight: 700;\n color: #fff;\n padding: 24px 32px;\n margin: 0; }\n .my-account-frp-preview-module_wrapper__dNipd .my-account-frp-preview-module_coverInfomation__2d2Ye {\n width: 30%;\n min-width: 220px;\n padding: 36px 32px;\n text-align: center;\n display: flex;\n flex-direction: column;\n align-items: center; }\n .my-account-frp-preview-module_wrapper__dNipd .my-account-frp-preview-module_coverInfomation__2d2Ye p {\n margin: 0; }\n .my-account-frp-preview-module_wrapper__dNipd .my-account-frp-preview-module_coverInfomation__2d2Ye .my-account-frp-preview-module_item__FZTOt {\n margin-bottom: 16px; }\n .my-account-frp-preview-module_wrapper__dNipd .my-account-frp-preview-module_coverInfomation__2d2Ye .my-account-frp-preview-module_item__FZTOt .my-account-frp-preview-module_number__2Nd_S {\n font-size: 20px;\n font-weight: 700;\n margin-bottom: 5px; }\n .my-account-frp-preview-module_wrapper__dNipd .my-account-frp-preview-module_coverInfomation__2d2Ye .my-account-frp-preview-module_item__FZTOt .my-account-frp-preview-module_text__2CocT {\n font-size: 14px; }\n .my-account-frp-preview-module_wrapper__dNipd .my-account-frp-preview-module_coverInfomation__2d2Ye .my-account-frp-preview-module_manageBtn__1AYl0 {\n border-radius: 50px;\n border: none;\n background: linear-gradient(90deg, #2d8a75 0%, #42ccae 97.5%);\n background: linear-gradient(90deg, #2d8a75 0%, #42ccae 97.5%);\n background: var(--Green-Linear, linear-gradient(90deg, #2d8a75 0%, #42ccae 97.5%));\n padding: 8px 16px;\n font-size: 14px;\n font-weight: 700;\n color: #fff;\n display: flex;\n align-items: center;\n cursor: pointer; }\n .my-account-frp-preview-module_wrapper__dNipd .my-account-frp-preview-module_coverInfomation__2d2Ye .my-account-frp-preview-module_manageBtn__1AYl0 svg {\n margin-left: 8px; }\n .my-account-frp-preview-module_wrapper__dNipd .my-account-frp-preview-module_coverInfomation__2d2Ye .my-account-frp-preview-module_manageBtn__1AYl0:hover {\n background: #65a797; }\n .my-account-frp-preview-module_wrapper__dNipd .my-account-frp-preview-module_coverInfomation__2d2Ye .my-account-frp-preview-module_progress__2cXze {\n margin: 20px 0 38px 0; }\n";
29715
+ var cls$r = {"wrapper":"my-account-frp-preview-module_wrapper__dNipd","coverImage":"my-account-frp-preview-module_coverImage__2mHgG","imgOverlay":"my-account-frp-preview-module_imgOverlay__2nZSr","boxImage":"my-account-frp-preview-module_boxImage__1ttYR","image":"my-account-frp-preview-module_image__1yL3f","noImg":"my-account-frp-preview-module_noImg__1hY6M","coverTitle":"my-account-frp-preview-module_coverTitle__1sSn-","title":"my-account-frp-preview-module_title__1x_bj","coverInfomation":"my-account-frp-preview-module_coverInfomation__2d2Ye","item":"my-account-frp-preview-module_item__FZTOt","number":"my-account-frp-preview-module_number__2Nd_S","text":"my-account-frp-preview-module_text__2CocT","manageBtn":"my-account-frp-preview-module_manageBtn__1AYl0","progress":"my-account-frp-preview-module_progress__2cXze"};
29716
+ styleInject(css$r);
29215
29717
 
29216
- var PartnerMonthlyStats = function PartnerMonthlyStats(_ref) {
29217
- var numeric = _ref.numeric,
29718
+ var FrpPreviewImg = function FrpPreviewImg(_ref) {
29719
+ var img = _ref.img,
29720
+ link = _ref.link,
29218
29721
  title = _ref.title;
29219
29722
  return React.createElement("div", {
29220
- className: cls$i.wrapper
29723
+ className: cls$r.coverImage
29221
29724
  }, React.createElement("div", {
29222
- className: cls$i.amount_raised
29223
- }, React.createElement("div", {
29224
- className: cls$i.numeric
29225
- }, numeric), React.createElement("div", {
29226
- className: cls$i.title
29725
+ className: cls$r.imgOverlay
29726
+ }), React.createElement("div", {
29727
+ className: cls$r.boxImage
29728
+ }, img ? React.createElement("img", {
29729
+ className: cls$r.image,
29730
+ src: img,
29731
+ alt: ""
29732
+ }) : React.createElement("div", {
29733
+ className: cls$r.noImg
29734
+ })), React.createElement("div", {
29735
+ className: cls$r.coverTitle
29736
+ }, React.createElement("p", {
29737
+ className: cls$r.title
29227
29738
  }, title)));
29228
29739
  };
29229
29740
 
29230
- PartnerMonthlyStats.propTypes = {
29231
- numeric: _pt.number,
29232
- title: _pt.string.isRequired
29741
+ FrpPreviewImg.propTypes = {
29742
+ img: _pt.string,
29743
+ link: _pt.string,
29744
+ title: _pt.string
29233
29745
  };
29234
29746
 
29235
- var css$j = ".partner-monthly-table-module_wrapper__e92hP {\n width: 100%;\n margin: 20px; }\n .partner-monthly-table-module_wrapper__e92hP .partner-monthly-table-module_title__2Sfuk {\n font-size: 24px;\n font-weight: bold;\n line-height: 1.4;\n margin-bottom: 5px;\n font-family: \"Montserrat\", \"Roboto\", sans-serif; }\n .partner-monthly-table-module_wrapper__e92hP .partner-monthly-table-module_table_wrap__j98xk {\n box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 29px;\n border-radius: 10px;\n padding: 20px; }\n .partner-monthly-table-module_wrapper__e92hP .partner-monthly-table-module_table_wrap__j98xk .partner-monthly-table-module_title_wrap__3zZFW {\n display: flex;\n align-items: end; }\n .partner-monthly-table-module_wrapper__e92hP .partner-monthly-table-module_table_wrap__j98xk .partner-monthly-table-module_title_wrap__3zZFW .partner-monthly-table-module_tooltip__2P0Ji {\n position: relative;\n display: inline-block; }\n .partner-monthly-table-module_wrapper__e92hP .partner-monthly-table-module_table_wrap__j98xk .partner-monthly-table-module_title_wrap__3zZFW .partner-monthly-table-module_tooltip__2P0Ji img {\n margin-bottom: 7px;\n margin-left: 5px; }\n .partner-monthly-table-module_wrapper__e92hP .partner-monthly-table-module_table_wrap__j98xk .partner-monthly-table-module_title_wrap__3zZFW .partner-monthly-table-module_tooltip__2P0Ji img svg {\n background-color: #000; }\n .partner-monthly-table-module_wrapper__e92hP .partner-monthly-table-module_table_wrap__j98xk .partner-monthly-table-module_title_wrap__3zZFW .partner-monthly-table-module_tooltip__2P0Ji .partner-monthly-table-module_tooltiptext__1Q9pA {\n visibility: hidden;\n width: 320px;\n background-color: black;\n color: #fff;\n text-align: center;\n border-radius: 6px;\n padding: 8px 13px;\n position: absolute;\n z-index: 1;\n top: 105%;\n right: 50%;\n margin-right: -162px;\n border: 1px solid #fba026;\n opacity: 0;\n transition: opacity 0.5s;\n line-height: 1.2; }\n .partner-monthly-table-module_wrapper__e92hP .partner-monthly-table-module_table_wrap__j98xk .partner-monthly-table-module_title_wrap__3zZFW .partner-monthly-table-module_tooltip__2P0Ji .partner-monthly-table-module_tooltiptext__1Q9pA::after {\n content: \"\";\n position: absolute;\n bottom: 100%;\n left: 50%;\n margin-left: -5px;\n border-width: 5px;\n border-style: solid;\n border-color: transparent transparent #fba026 transparent; }\n .partner-monthly-table-module_wrapper__e92hP .partner-monthly-table-module_table_wrap__j98xk .partner-monthly-table-module_title_wrap__3zZFW .partner-monthly-table-module_tooltip__2P0Ji:hover .partner-monthly-table-module_tooltiptext__1Q9pA {\n visibility: visible;\n opacity: 1; }\n .partner-monthly-table-module_wrapper__e92hP .partner-monthly-table-module_table_wrap__j98xk table {\n border-collapse: collapse;\n margin-bottom: 50px; }\n .partner-monthly-table-module_wrapper__e92hP .partner-monthly-table-module_table_wrap__j98xk th,\n .partner-monthly-table-module_wrapper__e92hP .partner-monthly-table-module_table_wrap__j98xk td {\n border-bottom: 1px solid #d5d5d5;\n padding: 20px 5px; }\n .partner-monthly-table-module_wrapper__e92hP td {\n text-align: center; }\n";
29236
- var cls$j = {"wrapper":"partner-monthly-table-module_wrapper__e92hP","title":"partner-monthly-table-module_title__2Sfuk","table_wrap":"partner-monthly-table-module_table_wrap__j98xk","title_wrap":"partner-monthly-table-module_title_wrap__3zZFW","tooltip":"partner-monthly-table-module_tooltip__2P0Ji","tooltiptext":"partner-monthly-table-module_tooltiptext__1Q9pA"};
29237
- styleInject(css$j);
29747
+ var css$s = ".my-account-stats-donated-module_wrapper__2204E {\n width: 100%;\n border-radius: 16px;\n background: #f2f8f1;\n position: relative;\n font-family: Montserrat;\n text-align: center;\n min-height: 312px;\n display: flex;\n justify-content: center; }\n .my-account-stats-donated-module_wrapper__2204E .my-account-stats-donated-module_picture__WCuVs {\n position: absolute;\n top: 45px;\n right: 25px; }\n .my-account-stats-donated-module_wrapper__2204E .my-account-stats-donated-module_content__rIydE {\n padding-top: 32px;\n max-width: 300px; }\n .my-account-stats-donated-module_wrapper__2204E .my-account-stats-donated-module_content__rIydE .my-account-stats-donated-module_title__2d6nq {\n font-size: 20px;\n font-weight: 700;\n color: #2d8a75;\n padding-bottom: 13px;\n margin: 0; }\n .my-account-stats-donated-module_wrapper__2204E .my-account-stats-donated-module_content__rIydE .my-account-stats-donated-module_number__1cP4D {\n font-size: 24px;\n font-weight: 700;\n color: #2d8a75;\n margin: 10px 0; }\n .my-account-stats-donated-module_wrapper__2204E .my-account-stats-donated-module_content__rIydE .my-account-stats-donated-module_text__293Ij {\n font-size: 16px;\n font-weight: 400;\n color: #404041;\n margin: 0;\n padding-bottom: 24px; }\n .my-account-stats-donated-module_wrapper__2204E .my-account-stats-donated-module_content__rIydE .my-account-stats-donated-module_text__293Ij .my-account-stats-donated-module_num__3-ePn {\n font-weight: 700;\n color: #2d8a75; }\n .my-account-stats-donated-module_wrapper__2204E .my-account-stats-donated-module_content__rIydE .my-account-stats-donated-module_view__Faeo3 {\n color: #2D8A75;\n font-size: 14px;\n text-decoration: none; }\n";
29748
+ var cls$s = {"wrapper":"my-account-stats-donated-module_wrapper__2204E","picture":"my-account-stats-donated-module_picture__WCuVs","content":"my-account-stats-donated-module_content__rIydE","title":"my-account-stats-donated-module_title__2d6nq","number":"my-account-stats-donated-module_number__1cP4D","text":"my-account-stats-donated-module_text__293Ij","num":"my-account-stats-donated-module_num__3-ePn","view":"my-account-stats-donated-module_view__Faeo3"};
29749
+ styleInject(css$s);
29238
29750
 
29239
- const img$i = "data:image/svg+xml,%3c%3fxml version='1.0' encoding='utf-8'%3f%3e%3c!-- Uploaded to: SVG Repo%2c www.svgrepo.com%2c Generator: SVG Repo Mixer Tools --%3e%3csvg width='800px' height='800px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M1 12C1 5.92487 5.92487 1 12 1C18.0751 1 23 5.92487 23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12ZM10.3027 13.3942C10.2316 13.7147 10.5038 14 10.8479 14H13.0406C13.2979 14 13.5151 13.8351 13.6064 13.6061C13.697 13.3789 14.0117 12.9674 14.254 12.7518C14.4827 12.5112 14.7213 12.2848 14.9563 12.0618C15.8824 11.183 16.754 10.356 16.754 8.91047C16.754 6.40301 14.582 5 12.2707 5C10.5038 5 8.06416 5.80604 7.58396 8.50363C7.48716 9.04737 7.94773 9.5 8.50002 9.5H9.91229C10.4388 9.5 10.8312 9.07642 11.0121 8.582C11.1863 8.10604 11.5379 7.7551 12.2707 7.7551C13.6066 7.7551 13.6064 9.22371 12.8346 10.1843C12.5434 10.5467 12.2023 10.8677 11.8648 11.1853C11.1798 11.8298 10.5098 12.4602 10.3027 13.3942ZM13.9999 17C13.9999 18.1046 13.1045 19 11.9999 19C10.8954 19 9.99994 18.1046 9.99994 17C9.99994 15.8954 10.8954 15 11.9999 15C13.1045 15 13.9999 15.8954 13.9999 17Z' fill='%23efefef'/%3e%3c/svg%3e";
29751
+ const img$k = "data:image/png;base64,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";
29240
29752
 
29241
- var scope$4 = {
29242
- styles: React.createElement(_JSXStyle, {
29243
- id: "3002567813"
29244
- }, ".main-list-meta.jsx-3002567813{margin-left:10px;}\n/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInBhcnRuZXItbW9udGhseS10YWJsZS50c3giXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBY3lCLEFBR3NCLGlCQUNuQiIsImZpbGUiOiJwYXJ0bmVyLW1vbnRobHktdGFibGUudHN4Iiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IFJlYWN0IGZyb20gXCJyZWFjdFwiO1xuaW1wb3J0IGNsYXNzbmFtZXMgZnJvbSBcImNsYXNzbmFtZXNcIjtcbmltcG9ydCBjbHMgZnJvbSBcIi4vcGFydG5lci1tb250aGx5LXRhYmxlLm1vZHVsZS5zY3NzXCI7XG5pbXBvcnQgY3NzIGZyb20gXCJzdHlsZWQtanN4L2Nzc1wiO1xuaW1wb3J0IFF1ZXN0aW9uSWNvbiBmcm9tIFwiLi9xdWVzdGlvbi1jaXJjbGUuc3ZnXCI7XG5cbmV4cG9ydCB0eXBlIENvbHVtblRhYmxlUHJvcHMgPSB7XG4gIGtleTogc3RyaW5nO1xuICBsYWJlbDogc3RyaW5nO1xuICBhbGlnbjogXCJjZW50ZXJcIiB8IFwibGVmdFwiIHwgXCJyaWdodFwiO1xuICByb3dQcmVmaXhJY29uPzogc3RyaW5nO1xuICByZW5kZXJDZWxsOiAoaXRlbTogYW55KSA9PiBSZWFjdC5SZWFjdE5vZGU7XG59O1xuXG5jb25zdCBzY29wZSA9IGNzcy5yZXNvbHZlYFxuICAubWFpbi1saXN0LW1ldGEge1xuICAgIG1hcmdpbi1sZWZ0OiAxMHB4O1xuICB9XG5gO1xuXG5leHBvcnQgaW50ZXJmYWNlIFBhcnRuZXJNb250aGx5VGFibGVQcm9wcyB7XG4gIGNvbHVtbnM6IEFycmF5PENvbHVtblRhYmxlUHJvcHM+O1xuICBkYXRhOiBBcnJheTxvYmplY3Q+O1xuICB0aXRsZT86IHN0cmluZztcbiAgdG9vbHRpcD86IHN0cmluZztcbn1cblxuY29uc3QgUGFydG5lck1vbnRobHlUYWJsZSA9ICh7XG4gIGNvbHVtbnMsXG4gIGRhdGEsXG4gIHRpdGxlLFxuICB0b29sdGlwLFxufTogUGFydG5lck1vbnRobHlUYWJsZVByb3BzKSA9PiB7XG4gIGNvbnN0IHJlbmRlckhlYWRlciA9ICgpID0+IHtcbiAgICByZXR1cm4gKFxuICAgICAgPHRyPlxuICAgICAgICB7Y29sdW1ucy5tYXAoKGNvbHVtbiwgaW5kZXgpID0+IChcbiAgICAgICAgICA8dGgga2V5PXtpbmRleH0gc3R5bGU9e3sgdGV4dEFsaWduOiBjb2x1bW4uYWxpZ24gfX0+XG4gICAgICAgICAgICB7Y29sdW1uLmxhYmVsfVxuICAgICAgICAgIDwvdGg+XG4gICAgICAgICkpfVxuICAgICAgPC90cj5cbiAgICApO1xuICB9O1xuXG4gIGNvbnN0IHJlbmRlclJvdyA9IChpdGVtOiBhbnksIHJvd0luZGV4OiBudW1iZXIpID0+IHtcbiAgICByZXR1cm4gKFxuICAgICAgPHRyIGtleT17cm93SW5kZXh9PlxuICAgICAgICB7Y29sdW1ucy5tYXAoKGNvbHVtbiwgY29sSW5kZXgpID0+IChcbiAgICAgICAgICA8dGQga2V5PXtjb2xJbmRleH0gc3R5bGU9e3sgdGV4dEFsaWduOiBjb2x1bW4uYWxpZ24gfX0+XG4gICAgICAgICAgICB7Y29sdW1uLnJlbmRlckNlbGwoaXRlbSl9XG4gICAgICAgICAgPC90ZD5cbiAgICAgICAgKSl9XG4gICAgICA8L3RyPlxuICAgICk7XG4gIH07XG5cbiAgcmV0dXJuIChcbiAgICA8ZGl2IGNsYXNzTmFtZT17Y2xzLndyYXBwZXJ9PlxuICAgICAgPGRpdiBjbGFzc05hbWU9e2Nscy50YWJsZV93cmFwfT5cbiAgICAgICAge3RpdGxlICYmIChcbiAgICAgICAgICA8ZGl2IGNsYXNzTmFtZT17Y2xzLnRpdGxlX3dyYXB9PlxuICAgICAgICAgICAgPHAgY2xhc3NOYW1lPXtjbHMudGl0bGV9Pnt0aXRsZX08L3A+XG4gICAgICAgICAgICA8ZGl2IGNsYXNzTmFtZT17Y2xzLnRvb2x0aXB9PlxuICAgICAgICAgICAgICA8aW1nIHNyYz17UXVlc3Rpb25JY29ufSB3aWR0aD17MjJ9IGhlaWdodD17MjJ9IC8+XG4gICAgICAgICAgICAgIDxzcGFuIGNsYXNzTmFtZT17Y2xzLnRvb2x0aXB0ZXh0fT57dG9vbHRpcH08L3NwYW4+XG4gICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgKX1cblxuICAgICAgICA8dGFibGUgc3R5bGU9e3sgd2lkdGg6IFwiMTAwJVwiIH19PlxuICAgICAgICAgIDx0aGVhZD57cmVuZGVySGVhZGVyKCl9PC90aGVhZD5cbiAgICAgICAgICA8dGJvZHk+e2RhdGEubWFwKChpdGVtLCBpbmRleCkgPT4gcmVuZGVyUm93KGl0ZW0sIGluZGV4KSl9PC90Ym9keT5cbiAgICAgICAgPC90YWJsZT5cbiAgICAgIDwvZGl2PlxuICAgIDwvZGl2PlxuICApO1xufTtcblxuZXhwb3J0IGRlZmF1bHQgUGFydG5lck1vbnRobHlUYWJsZTtcbiJdfQ== */\n/*@ sourceURL=partner-monthly-table.tsx */"),
29245
- className: "jsx-3002567813"
29753
+ const img$l = "data:image/svg+xml,%3csvg width='67' height='82' viewBox='0 0 67 82' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M63.8614 31.9364L42.6744 21.3783L40.6202 23.4266L59.2389 32.7046L32.4995 46.0292L5.76117 32.7046L24.1239 23.5534L22.0688 21.5058L1.13852 31.9364C0.713078 32.1487 0.5 32.4268 0.5 32.7046V32.9618V62.337V65.9046C0.5 66.1818 0.713078 66.4598 1.13852 66.6721L30.9587 81.5332C31.3842 81.7449 31.942 81.8511 32.4995 81.8511C33.0573 81.8511 33.615 81.7449 34.0404 81.5332L63.8614 66.6721C64.2705 66.4683 64.5 66.1925 64.5 65.9039V32.7046C64.5 32.416 64.2705 32.1401 63.8614 31.9364ZM43.7205 31.9834C43.7205 31.1767 43.0641 30.5224 42.2547 30.5224H22.7452C21.9357 30.5224 21.2795 31.1767 21.2795 31.9834C21.2795 32.7902 21.9357 33.4444 22.7452 33.4444H42.2547C43.0641 33.4444 43.7205 32.7902 43.7205 31.9834ZM29.9605 4.84114C30.3782 5.25802 30.7335 5.73547 31.0159 6.26144C31.2711 6.73598 31.7674 7.03172 32.3081 7.03172C32.8479 7.03172 33.3449 6.73598 33.5993 6.26144C33.8825 5.73547 34.2379 5.25802 34.6555 4.84187C35.8015 3.69942 37.3281 3.07019 38.9541 3.07019C40.5802 3.07019 42.1068 3.69942 43.253 4.84187C44.3991 5.98341 45.0304 7.50569 45.0304 9.12631C45.0304 10.7469 44.3991 12.2685 43.253 13.4108L32.3081 24.3194L21.3624 13.4108C20.2169 12.2685 19.5856 10.7469 19.5856 9.12631C19.5856 7.50569 20.2169 5.98341 21.3631 4.84187C22.5092 3.69942 24.0351 3.07019 25.6618 3.07019C27.2878 3.07019 28.8144 3.69942 29.9605 4.84114ZM32.9788 27.6847C33.1259 27.609 33.2568 27.5107 33.3677 27.3954L45.3258 15.4767C47.0254 13.7828 47.9613 11.5272 47.9613 9.12631C47.9613 6.7254 47.0254 4.4697 45.3258 2.77573C43.6262 1.08177 41.363 0.148949 38.9541 0.148949C36.5452 0.148949 34.2822 1.08177 32.5826 2.77573C32.4889 2.86914 32.3974 2.96455 32.3081 3.06161C32.2186 2.96455 32.127 2.86914 32.0335 2.77573C30.3337 1.08177 28.0707 0.148949 25.6618 0.148949C23.2529 0.148949 20.9899 1.08177 19.2901 2.77573C17.5906 4.4697 16.6539 6.72466 16.6539 9.12631C16.6539 11.5272 17.5899 13.7828 19.2901 15.4767L31.244 27.391C31.37 27.5229 31.5215 27.6333 31.6945 27.7125C31.8904 27.8022 32.0992 27.8464 32.3059 27.8464C32.3066 27.8464 32.3073 27.8464 32.3081 27.8464C32.5369 27.8464 32.7662 27.7929 32.9788 27.6847Z' fill='%232D8A75'/%3e%3cpath d='M31.6786 12.9375H31.0701C30.9013 12.9375 30.7641 12.8007 30.7641 12.6325V10.6433C30.7641 10.4751 30.9013 10.3383 31.0701 10.3383H31.6786V12.9375ZM33.5433 14.1896C33.712 14.1896 33.8493 14.3265 33.8493 14.4947V16.4844C33.8493 16.6526 33.712 16.7894 33.5433 16.7894H32.9348V14.1896H33.5433ZM34.4779 12.4194C34.8246 12.4194 35.1058 12.1386 35.1058 11.7929V10.6433C35.1058 9.7846 34.4049 9.08621 33.5433 9.08621H32.9348V8.84758C32.9348 8.50185 32.6538 8.22181 32.3072 8.22181C31.9603 8.22181 31.6786 8.50185 31.6786 8.84758V9.08621H31.0701C30.2085 9.08621 29.5078 9.7846 29.5078 10.6433V12.6325C29.5078 13.4912 30.2085 14.1896 31.0701 14.1896H31.6786V16.7894H31.0701C30.9013 16.7894 30.7641 16.6526 30.7641 16.4844V15.3341C30.7641 14.9885 30.4831 14.7085 30.1362 14.7085C29.7895 14.7085 29.5078 14.9885 29.5078 15.3341V16.4844C29.5078 17.3431 30.2085 18.0415 31.0701 18.0415H31.6786V18.3693C31.6786 18.7149 31.9603 18.9958 32.3072 18.9958C32.6538 18.9958 32.9348 18.7149 32.9348 18.3693V18.0415H33.5433C34.4049 18.0415 35.1058 17.3431 35.1058 16.4844V14.4947C35.1058 13.6366 34.4049 12.9375 33.5433 12.9375H32.9348V10.3383H33.5433C33.712 10.3383 33.8493 10.4751 33.8493 10.6433V11.7929C33.8493 12.1386 34.131 12.4194 34.4779 12.4194Z' fill='%232D8A75'/%3e%3c/svg%3e";
29754
+
29755
+ var MyAccountStatsDonated = function MyAccountStatsDonated(_ref) {
29756
+ var number = _ref.number,
29757
+ donations = _ref.donations;
29758
+ var formatterMoney = new Intl.NumberFormat("en-US", {
29759
+ style: "currency",
29760
+ currency: "USD",
29761
+ minimumFractionDigits: 0
29762
+ });
29763
+ return React.createElement("div", {
29764
+ className: cls$s.wrapper
29765
+ }, React.createElement("img", {
29766
+ className: cls$s.picture,
29767
+ src: img$k
29768
+ }), React.createElement("div", {
29769
+ className: cls$s.content
29770
+ }, React.createElement("p", {
29771
+ className: cls$s.title
29772
+ }, "DONATED"), React.createElement("img", {
29773
+ src: img$l
29774
+ }), React.createElement("p", {
29775
+ className: cls$s.number
29776
+ }, formatterMoney.format(number).replace("$", "$ ")), React.createElement("p", {
29777
+ className: cls$s.text
29778
+ }, "You have made ", React.createElement("br", null), " ", React.createElement("span", {
29779
+ className: cls$s.num
29780
+ }, donations), " ", "donations"), React.createElement("a", {
29781
+ href: "",
29782
+ className: cls$s.view
29783
+ }, "View donations")));
29246
29784
  };
29247
29785
 
29248
- var PartnerMonthlyTable = function PartnerMonthlyTable(_ref) {
29249
- var columns = _ref.columns,
29250
- data = _ref.data,
29251
- title = _ref.title,
29252
- tooltip = _ref.tooltip;
29786
+ MyAccountStatsDonated.propTypes = {
29787
+ number: _pt.number.isRequired,
29788
+ donations: _pt.number.isRequired,
29789
+ campaigns: _pt.number.isRequired
29790
+ };
29253
29791
 
29254
- var renderHeader = function renderHeader() {
29255
- return React.createElement("tr", null, columns.map(function (column, index) {
29256
- return React.createElement("th", {
29257
- key: index,
29258
- style: {
29259
- textAlign: column.align
29260
- }
29261
- }, column.label);
29262
- }));
29263
- };
29792
+ var css$t = ".my-account-stats-raised-module_wrapper__1Xb5N {\n width: 100%;\n border-radius: 16px;\n background: #f2f8f1;\n position: relative;\n font-family: Montserrat;\n text-align: center;\n min-height: 312px;\n display: flex;\n justify-content: center; }\n .my-account-stats-raised-module_wrapper__1Xb5N .my-account-stats-raised-module_picture__1R1tk {\n position: absolute;\n top: 20px;\n left: 30px; }\n .my-account-stats-raised-module_wrapper__1Xb5N .my-account-stats-raised-module_content__3_KK5 {\n padding-top: 32px;\n max-width: 300px; }\n .my-account-stats-raised-module_wrapper__1Xb5N .my-account-stats-raised-module_content__3_KK5 .my-account-stats-raised-module_title__A4jOV {\n font-size: 20px;\n font-weight: 700;\n color: #2d8a75;\n padding-bottom: 32px;\n margin: 0; }\n .my-account-stats-raised-module_wrapper__1Xb5N .my-account-stats-raised-module_content__3_KK5 .my-account-stats-raised-module_number__1pf6L {\n font-size: 24px;\n font-weight: 700;\n color: #2d8a75;\n margin: 10px 0; }\n .my-account-stats-raised-module_wrapper__1Xb5N .my-account-stats-raised-module_content__3_KK5 .my-account-stats-raised-module_text__3_L7J {\n font-size: 16px;\n font-weight: 400;\n color: #404041;\n margin: 0; }\n .my-account-stats-raised-module_wrapper__1Xb5N .my-account-stats-raised-module_content__3_KK5 .my-account-stats-raised-module_text__3_L7J .my-account-stats-raised-module_num__1OQAI {\n font-weight: 700;\n color: #2d8a75; }\n";
29793
+ var cls$t = {"wrapper":"my-account-stats-raised-module_wrapper__1Xb5N","picture":"my-account-stats-raised-module_picture__1R1tk","content":"my-account-stats-raised-module_content__3_KK5","title":"my-account-stats-raised-module_title__A4jOV","number":"my-account-stats-raised-module_number__1pf6L","text":"my-account-stats-raised-module_text__3_L7J","num":"my-account-stats-raised-module_num__1OQAI"};
29794
+ styleInject(css$t);
29264
29795
 
29265
- var renderRow = function renderRow(item, rowIndex) {
29266
- return React.createElement("tr", {
29267
- key: rowIndex
29268
- }, columns.map(function (column, colIndex) {
29269
- return React.createElement("td", {
29270
- key: colIndex,
29271
- style: {
29272
- textAlign: column.align
29273
- }
29274
- }, column.renderCell(item));
29275
- }));
29276
- };
29796
+ const img$m = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF8AAADOCAYAAABYdt4TAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAABH/SURBVHgB7Z1rjBxXlcfPre7xzNhJ3E7sAAn2lGGFbLS7mTwB7WZTttndPNiNB+0CBlZxJLIPaZHH5ANYPNxWAhEfIPYXHgrEHZFAJAQ9llCcoASXYxCQxHgcJGIBsmvsBCeMHbdxZjwzPV2Xc7qrxt09VV23qququ+r2T+rpnq7q6pl/nTr33HPuvcWgxwJfevrJbdcMXpF/bep8KcNgQ/6OLQZEiAI9qnzxqScfNk2+uwKQ4wDqPIcTn3/q+6MQIQwkJ7//B+q8aY4BU66j39+xbDmcnjq/sJ0B252ZvbgrP3JvCUJGasv/wv7vaWjhR2zhneDARyv9A0foJEHISCv+F/f/YCfw7AF8mfPal9xQhcOBLzz1/c0QItK5nXxxb26+f3AvSuooZLPbaYYxyD9wx5ZdEAJSiZ//6RPDlXmlSJbsto+X+BZ6lsG97UZD0rgdCiPn55UDrYT3gUZuqN12IPWWT26m0j+4kxpOkf0FLX8BPO72L9/58d0QgFSL3xxGiuBXfCJoOJpatyMSRoZF0HA0leL7CSPDIkg4miq3UwsjB4r4UoOABHE7zYiGo6kRXySMFCEM8S08w9FUiE9hJCbF8iDgZi7vG4CrBpfBbGW++vscPvdnMvh7BZ+zcOXAUnhzZrrxQ3hGgaFnR7nmTNxfyVbfPjsztXAcJ1Bco8IzI1+56yPjLtuTS6swkoS8bEk/LEGhSODLlwxU3z97cQoulGdcjylq+dXj9+Hx8blfwZNnVqCM33OhPLvohLi5ocSK3xxGkhhXDSyrGSk+SACyTL+063bob6C/hU4KnfQ/WcdyCkcTKT6FkRjNFPGfzJF1kxsg0cPw1SH6/AWDoKuPrrY3Z6aM+iJN4sT/6nP7dl7VP5gnq7owN9vShQQhTPHruRyNhNobhSmlqfLc9vs3/XshMeKfOHEit3/ileIsn9fIb0dFVOLXQyfiupVrConpZK1du7b0p+nzEKXwcUFX7M9f+8NEonq4FDfjU+jlvLihEPTBu7bkEyU+NVQMeCiFjE5CjS49Jy6380AtfatDUuF8jx3tJDKxls2a2yGBkLvJzs3m7d8TKX7+Xz4xDtxMnPuhwkt9JyuxKeUH7/pEniwJEgKmGAoP3vnxsfr3Ep3P57Xop+shI8kALLpSEy3+g3ds0akBg26Hwy6n1HLiK1nUgHWz+yF388BdWwpO2xIvPjVg3ep+3NyNTSpquF3rflzcjU1qCuhW/NxFqQc25uZubFIjfi1+5t3ifkpZxj07gqkaOlKLo9kYdBjsTO0SGceZunE72dmLHc18UiMrOnwwdeKT++lk5tPOWIqQyhFrHct8ekQ3zaR2rGbchRe7QOLnM6kVP+7Cix93Y5PqyRGxuR+f7sYm9TNTshGnHoK4G5vUi1+1yAgLL+3klaSYk0WFF8z9jEPIVAsklFcKiDzzcBUWat3XK2MpgjTih575DNjI1iPVDPSwCi+tCiR+kEr8MAovYbgbG+nWXmjb/YTgbmykXPgiqPsJy93YSCl+QPdTCsvd2Ei75EstPhcvvIgWSPwg9WJHooUXPwUSP0gtvmjhJUjGUgTpF7jzzHyGGN0001tdENwLL+1kLEXoiQ/uhZeo3I1NT3yLRe4nQndj0xO/DnI/6GpKUbubhe8DydBeLGpoccP4MscUNrSwgUPuEPCJu2FQ59PnYxn3KY34m17atw0V1jjnB02O7qUCJf0Dm43m/SqapukIxIAU4n/wxWKegzn+3E0jIwK7xzbcJPU+f+MLxa1o6QYK75lKQKMnd5T4SdZdw6aXigXRfVF8DWIk/dEOY1xkN9RdhZitPv3icy66hIiK7WzoIxxaIUGcXxdOdhmpF9/E2F07Umy58J3V0BoQM6kXP8NhLFPxXGczhy7HgJhJvfjP3jyimy0WObUaWgM6gBS5HbL+jS8W3VYR1zph9YQU4pP1MwbqP79QHK5/H62e2gIdekQPdbi0XxZV+/e4O1XNSJVSrmRgNNPH9tafgB4xQsJvemmsuOmTHwn1zj9BkK6Yon9gxKiU+XZ+6/X3QIeRs5K1Yw8oucuOtoiAYkHWMuLwsx/9dB4rWdd59X6jRDrxrQinmkCrzPFdyjx0zPqltHy7U0X+nzEW+Q1t3JBKfKdUAtV0qagOHUA2y1ebUwlUTFd4KHeN84004rsm0CpYvWI98aNG7VQCzQ0pxLciHMNpWzYLKibdYi0fLnw3xIxVNbJj63G0xliK1m5Wj7n+YdPsTGYzNvFRdOzOMxqMmmt8f4NOC9NF5RJaWT3B0d/rN490xPJjcTu1xo4VwPkmYhpuO1E7OdHgdmIpyaYwthw6ROTi1woWIhPP2G4rIgnzu1uOu8wuUe6hXi50iEjFr/l3dgJfNvQil2UVUK/oh/deOQirBvvst+mq2AkhYVWp3Lej1ZumyaiXCx0iMp9vuZqG26KS2B/+m5WwHp/refzYJOw3zuErpkF4qK2snvXBqFmG0GcY+iFCy2d5aPLxn1x39SLhiQ+/+6rq1YDN31EIAcvqXaOoDx7et5OZGGl10OqJKN3O3aI7Lu1T4HZ1Bb0sQJtY7YbriIRNL+27h9zNz24ZKUCHiVL8Bqsn304iu3H70ApYl7ssjJif3I1jA0/Cc26u/dnNI3noAqIU36j/5X/+7u31jesi6MR8/n1vh3ZAq9/s5uc3Ht73MOPmim4Rnoiwk8UPot9X6RU1tE6+PkxIeHAYg0Pp4gxj25hp7qHxO9BFRNnDLeDDT8fJWL3jOzoEwBa+PlWxIDrnR+cz2IO+fqTrZpxEKT512ekfzk1enPfc2eT8MQiAlT6oCk/1WCwLbsXq1G3dLLpNpLdkRV3y+BU7KZL5r3WrWu1qXPu5b68Ff8dW6Qke2qYrWdhMgqOrm2AcxrrNvbgRaWINrTGPiTN11UDW1f1w3K08MygyS7CK9kJxWPnFUQ3eduVt7D2radbJcFXwmzZ3tMMUhEgt3+a7//fR0duHcg/D4m8vXfvZb6/w+jylAjJ97GG4MFXih4/lzIvlPfCh9413s0sRIVTx6W7NiqJstUYEqFDz+fuUU8fG2aEfHXH6jMkrG0QaWrsOENcE5TgITfxTp05t45znwTltXPuyc68DlGcB3kJvMYWlU3zNZ6fH5m/5EGUWDbrbc/Nn6oovsRVe4qJt8cnaM5lMEcBz6g3AGxOgnHgZYA5Ff9ffA3/ne5r30PHx2Jo1awppFt2mLfFReA2F3wvgXf1nv/oJKMfr8mZLBqBy9/8D9PU37Hfy5Ek4fvx44dFHH92eVtFtAotvuRmhCIP99hAov32+8U0S/z/ur76cnp6uij45eQZuvPEGWLp0KQ1m2j40NJS4CMYPgcRHoShyGfXc8a0SKL/+CTB0N4s2vfsmmHzH+qrwK1eurD6aKKH78YyEkowv8X35d0R5/ofAXv19w3u8bwAmr1kPU6v/FlDclp+vVCobsBHWIaUId7Is4XVoKgm2gq+7ZUF8vmw58Pf/G0xW8CuX9MOaxZa+CAxbqdHVIaUIpZQt4SlO9zWil189BPxtQ9WTYN55X/X1xOk3nFyMGxqkGCHLtyxehQCY//SfDRHNsmVLhT/byeHbceBp+VbjGlyEplCSIhkfqHTVQUppKT4KvxUg3JkbFN34RIOU4iq+ZXGhjaOxmZryJz42uiqkFFfx0c9TdUiFkBkaWgNnzpzx8xENUoqr+NjD1CACKNLxI36tSJJOOjI+30eoSeROnz6tQgpxFd80zcjyKj7Fh5mZmWFIIa7iY7d+HLv316P7McAdnUdw27tmsNHVIIW07GTRCaAnCjlR5GFmjWXH10fxyihQ8QO3nYOISWtnK4x8/gGInlRmONtqcKleC/GQyka3LfHjDAPL5bIGKSOw+OhyKAJRIUTwZOpu26jNgZQRWHx0OaGv1ISN+Hm36CqNjW474gtPfhDFiqb2uWzuWT6BLkeNwg3gMXNo/WMum1PX6AYSH8NLDSIALb86Tgdc5lOlrdEN6nYim7BsjVo76LQtbY2ub/GtPL8G0aDSDxRZd9qYtkbXt/hWnj9SKHXhskluy0ciFZ+uLMv16A6bc1b/IhUEET/SXu3AwEC1YE5rnzltxytPTvEpkQYthoCHCboe3en9NDW6vsSPI5GGhROVnq1hgk4hZ2rKir7Ej7ueyh1mKOLfMJyWsTzC4keRSHMCfbpqv27R21UhBQiLH2Puvh7H3m5ayop+xI/F5VB+x35thZyLasR4daSisyU6SlmNMcpo8Of4vYuynFjYT0XEIyR+VIk0EZx6u2lpdEXdTmx3WcAT3XA7vRa93cRbv6f4ESfShHDq7VqzVhKN5+QIy/KYpmm78WkbvUdzqVatWgk33HAj3HrrP0KYoD9fNESERs/1Pf3d22Deyuf3ZfXyv36qAAnHRyfrUjqXpm0ePvwbeOSRR+Azn7kfDh36OYQFc1hklAyAlyaPMpq1To/SGdVptnrS8NPDdbzMacQxnYQnnngC2oWGHjpFNwQDsz7kVE899CkNEo7QnKymxacdeeaZn1aviPvuu094ICyduFdeOQbHjh3DtuW4/vjjj29w25cDU+uH1yksMwoJn6koOhVUFdmJhCQ3tH79Oli3bv2ik0Bi1x6TMDFxsmmKUMsBucAU7Ok23lA78R0tUfF9RRZ0Eujhk4lWG8sX5wpLBvoX1uzhHbqNapgI+vxYsplGq41r84WSydmlRac5C7QmWzch2uCqED2G1w6rd3wrjydgAz3eueNbBUg4nkPErSXYIx+Dj6Z8va7r4yARIpYfV0/SAMnoFvFLaV/YyAkB8UNd094NAyRExPKHwD9+rVg6qycicjvOw/1a7G+AhLQU30or+MXAh987QEyAhHhZvgq+8Wv1VQyQEC/xNfBPkJ6nARLiIb7vIdlGwOV2ew2uAz59fiCXA7L1bG1cxbfWp/c7QiCIy5HS6olWlq+CP4K6HAMkpZX4GviiweX4uWJ6lr8Y5jfGr6+9+hE/lLvCJZFWlu8nrVByuzGYN7xn+fVY9xb0Yfk8oPBVpIx0CDfLb8fl+KVn+U34Eb8Nl1PFAElxE18FYdpyORDVvc+TgIv4vtIKPZcTkHbdjovLYaKhprSNLbFIfJGhgZdwdTnLQezz50FinCxfBXHacTkIM0BinMT3E+no0BZylg9tHMQXTSvwfSEM9zBAYpwsXzTSaSvEtOhFOzZWWkEFMcIQ3wCJabb8OF2O1B0sIqD4nlYvEqoaIDlN4gsPDeyJHwLNli+Qww/H5cjewSKCuJ0wGlqQvYNFLIjvY2hgSOLL3cEi6i1fFdhfD3EcvQGSUy++5r07D3MSmtQdLKJOfKEcvg7hIXU6mai3fC+fr/voFKleO8g4DaiZqvhWWsEjNg/V5RjQY8HyRSIdHcLDgB7C4uvh5mF6HSzCEt8rrRCqyyGkb2wJS3w+trw/o7/3ykFYlnWsqesQLtI3tkR11RF0KYWTX/nvUka5dAVMXJiFs9Pl8a8deX2Xrj9nQLj0LB/qlnxhrNH1DF3eD6sv6z+IwgdIJ/BdK/r7chtXL99W/+5b5YrxzMQ5cmEG9Lgk/i9P/+Xuf7jmioaNu379KocA4JWUP/3Q/6om4w3i0xo5Ox4r5qFHFTvO3/yNl19XX3nz4sKG7x2bhD+Wpkc1bWNo90F/eXJataYb9YBL0c5W+vn8a39Z2HDoVTsa5HkUbBR88vXfnMxNXiw3vLf3d2+o+F0H8HhboQdk6Ieqrv0mPg1QI/uMcQ6ePVWC83OVut3Y7aqqGojwLJIlV1/7uacnSu+/Y2gF9GUY0In48R/P0iZav2ezqr4LDzl0FI8pbeSTqVkh+5j9RtnkMD1vOuxKgomfADyhn6Wnl89OQ5/C4PCfp9CNzdTvMmwd8zweU8roh2naBopmfNznkO0GMPd49XjxuEdAuCDP8G8waehhyD3p7iaA+FUM/GgBBXvMTSw8Li0NJjjgtgG8Cvi9MkyMVnT9wGb8Z0fw9R5rOqeID1apIcbn3U4bxbKkrgxDCu8A6oTdwyXrX+hMWeJp5JNR5Otcxm/SSdJdjhtU+BJ10KjHDRLAbrv1Yye8dzNzwOZzjNVCR84xQuX9KJTS4iqp4GfmXE4Cxx51Y/+Nc4Y/BjyO6Yl+8NCT90JC+Cs8VROm3AR93wAAAABJRU5ErkJggg==";
29277
29797
 
29798
+ const img$n = "data:image/svg+xml,%3csvg width='64' height='58' viewBox='0 0 64 58' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_1435_1034)'%3e%3cpath d='M13.8253 12.0818C13.4019 12.0818 13.0577 12.4265 13.0577 12.8505V17.1818C13.0577 17.6058 13.4019 17.9505 13.8253 17.9505H15.2479V12.0818H13.8253ZM17.761 26.3356H19.1835C19.6069 26.3356 19.9511 25.9909 19.9511 25.5669V21.2356C19.9511 20.8116 19.6069 20.4669 19.1835 20.4669H17.761V26.3356ZM16.5029 30.9293C15.8114 30.9293 15.2479 30.365 15.2479 29.6726V28.8521H13.8253C12.0159 28.8521 10.5446 27.3788 10.5446 25.5669V23.0627C10.5446 22.3703 11.1051 21.806 11.7996 21.806C12.4942 21.806 13.0577 22.3703 13.0577 23.0627V25.5669C13.0577 25.9909 13.4019 26.3356 13.8253 26.3356H15.2479V20.4669H13.8253C12.0159 20.4669 10.5446 18.9937 10.5446 17.1818V12.8505C10.5446 11.0386 12.0159 9.56535 13.8253 9.56535H15.2479V8.94004C15.2479 8.24764 15.8114 7.68333 16.5029 7.68333C17.1974 7.68333 17.761 8.24764 17.761 8.94004V9.56535H19.1835C20.9929 9.56535 22.4642 11.0386 22.4642 12.8505V15.3547C22.4642 16.0502 21.9007 16.6114 21.2092 16.6114C20.5147 16.6114 19.9511 16.0502 19.9511 15.3547V12.8505C19.9511 12.4265 19.6069 12.0818 19.1835 12.0818H17.761V17.9505H19.1835C20.9929 17.9505 22.4642 19.4237 22.4642 21.2356V25.5669C22.4642 27.3788 20.9929 28.8521 19.1835 28.8521H17.761V29.6726C17.761 30.365 17.1974 30.9293 16.5029 30.9293ZM44.8138 12.1794C44.3904 12.1794 44.0462 12.5241 44.0462 12.9481V17.2794C44.0462 17.7034 44.3904 18.0481 44.8138 18.0481H46.2394V12.1794H44.8138ZM48.7525 26.4332H50.175C50.5985 26.4332 50.9427 26.0885 50.9427 25.6646V21.3332C50.9427 20.9092 50.5985 20.5645 50.175 20.5645H48.7525V26.4332ZM47.4944 31.0269C46.7999 31.0269 46.2394 30.4626 46.2394 29.7702V28.9497H44.8138C43.0075 28.9497 41.5331 27.4764 41.5331 25.6646V23.1603C41.5331 22.4679 42.0966 21.9036 42.7912 21.9036C43.4857 21.9036 44.0462 22.4679 44.0462 23.1603V25.6646C44.0462 26.0885 44.3904 26.4332 44.8138 26.4332H46.2394V20.5645H44.8138C43.0075 20.5645 41.5331 19.0913 41.5331 17.2794V12.9481C41.5331 11.1362 43.0075 9.66296 44.8138 9.66296H46.2394V9.03766C46.2394 8.34525 46.7999 7.78095 47.4944 7.78095C48.189 7.78095 48.7525 8.34525 48.7525 9.03766V9.66296H50.175C51.9845 9.66296 53.4558 11.1362 53.4558 12.9481V15.4523C53.4558 16.1478 52.8922 16.709 52.1977 16.709C51.5062 16.709 50.9427 16.1478 50.9427 15.4523V12.9481C50.9427 12.5241 50.5985 12.1794 50.175 12.1794H48.7525V18.0481H50.175C51.9845 18.0481 53.4558 19.5214 53.4558 21.3332V25.6646C53.4558 27.4764 51.9845 28.9497 50.175 28.9497H48.7525V29.7702C48.7525 30.4626 48.189 31.0269 47.4944 31.0269ZM29.3211 22.5442C28.8947 22.5442 28.5504 22.8888 28.5504 23.3128V27.6442C28.5504 28.0682 28.8947 28.4128 29.3211 28.4128H30.7436V22.5442H29.3211ZM33.2567 36.798H34.6793C35.1027 36.798 35.4469 36.4533 35.4469 36.0293V31.6979C35.4469 31.274 35.1027 30.9293 34.6793 30.9293H33.2567V36.798ZM31.9987 41.3916C31.3041 41.3916 30.7436 40.8273 30.7436 40.1349V39.3144H29.3211C27.5117 39.3144 26.0404 37.8411 26.0404 36.0293V33.525C26.0404 32.8326 26.6009 32.2683 27.2954 32.2683C27.9899 32.2683 28.5504 32.8326 28.5504 33.525V36.0293C28.5504 36.4533 28.8947 36.798 29.3211 36.798H30.7436V30.9293H29.3211C27.5117 30.9293 26.0404 29.456 26.0404 27.6442V23.3128C26.0404 21.501 27.5117 20.0277 29.3211 20.0277H30.7436V19.4054C30.7436 18.71 31.3041 18.1457 31.9987 18.1457C32.6932 18.1457 33.2567 18.71 33.2567 19.4054V20.0277H34.6793C36.4887 20.0277 37.96 21.501 37.96 23.3128V25.8171C37.96 26.5125 37.3964 27.0738 36.705 27.0738C36.0104 27.0738 35.4469 26.5125 35.4469 25.8171V23.3128C35.4469 22.8888 35.1027 22.5442 34.6793 22.5442H33.2567V28.4128H34.6793C36.4887 28.4128 37.96 29.8861 37.96 31.6979V36.0293C37.96 37.8411 36.4887 39.3144 34.6793 39.3144H33.2567V40.1349C33.2567 40.8273 32.6932 41.3916 31.9987 41.3916ZM17.5965 3.01646C13.7309 3.01646 9.86839 4.48973 6.92581 7.43628C1.04064 13.3294 1.04064 22.9163 6.92581 28.8094L31.9987 53.919L57.0746 28.8094C62.9597 22.9163 62.9597 13.3294 57.0746 7.43628C51.1894 1.54319 41.6154 1.54319 35.7302 7.43628C34.6915 8.47641 33.8081 9.66905 33.1075 10.9776L31.9987 13.0457L30.8929 10.9776C30.1923 9.66905 29.3089 8.47641 28.2702 7.43628C25.3276 4.48973 21.462 3.01646 17.5965 3.01646ZM31.9743 57.5L5.14684 30.5907C-1.71613 23.7154 -1.71612 12.5302 5.14991 5.65799C8.46717 2.33322 12.8902 0.5 17.5965 0.5C22.3058 0.5 26.7258 2.33322 30.0461 5.65799C30.765 6.3748 31.4168 7.1526 31.9987 7.98532C32.5835 7.1526 33.2354 6.3748 33.9513 5.65799C40.8173 -1.21727 51.9875 -1.21727 58.8505 5.65799C65.7165 12.5302 65.7165 23.7154 58.8505 30.5907L31.9743 57.5Z' fill='%232D8A75'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_1435_1034'%3e%3crect width='64' height='57' fill='white' transform='translate(0 0.5)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e";
29799
+
29800
+ var MyAccountStatsRaised = function MyAccountStatsRaised(_ref) {
29801
+ var number = _ref.number,
29802
+ donations = _ref.donations,
29803
+ campaigns = _ref.campaigns;
29804
+ var formatterMoney = new Intl.NumberFormat("en-US", {
29805
+ style: "currency",
29806
+ currency: "USD",
29807
+ minimumFractionDigits: 0
29808
+ });
29278
29809
  return React.createElement("div", {
29279
- className: cls$j.wrapper
29280
- }, React.createElement("div", {
29281
- className: cls$j.table_wrap
29282
- }, title && React.createElement("div", {
29283
- className: cls$j.title_wrap
29284
- }, React.createElement("p", {
29285
- className: cls$j.title
29286
- }, title), React.createElement("div", {
29287
- className: cls$j.tooltip
29810
+ className: cls$t.wrapper
29288
29811
  }, React.createElement("img", {
29289
- src: img$i,
29290
- width: 22,
29291
- height: 22
29292
- }), React.createElement("span", {
29293
- className: cls$j.tooltiptext
29294
- }, tooltip))), React.createElement("table", {
29295
- style: {
29296
- width: "100%"
29297
- }
29298
- }, React.createElement("thead", null, renderHeader()), React.createElement("tbody", null, data.map(function (item, index) {
29299
- return renderRow(item, index);
29300
- })))));
29812
+ className: cls$t.picture,
29813
+ src: img$m
29814
+ }), React.createElement("div", {
29815
+ className: cls$t.content
29816
+ }, React.createElement("p", {
29817
+ className: cls$t.title
29818
+ }, "RAISED"), React.createElement("img", {
29819
+ src: img$n
29820
+ }), React.createElement("p", {
29821
+ className: cls$t.number
29822
+ }, formatterMoney.format(number).replace("$", "$ ")), React.createElement("p", {
29823
+ className: cls$t.text
29824
+ }, "raised ", React.createElement("br", null), " from ", React.createElement("span", {
29825
+ className: cls$t.num
29826
+ }, donations), " ", "donations in ", React.createElement("br", null), " ", React.createElement("span", {
29827
+ className: cls$t.num
29828
+ }, campaigns), " ", "campaigns")));
29301
29829
  };
29302
29830
 
29303
- PartnerMonthlyTable.propTypes = {
29304
- columns: _pt.any.isRequired,
29305
- data: _pt.any.isRequired,
29306
- title: _pt.string,
29307
- tooltip: _pt.string
29831
+ MyAccountStatsRaised.propTypes = {
29832
+ number: _pt.number.isRequired,
29833
+ donations: _pt.number.isRequired,
29834
+ campaigns: _pt.number.isRequired
29308
29835
  };
29309
29836
 
29310
- export { Anchor, Avatar, BoldAnchor, Box, Button, ButtonSelect, CampaignCard, CampaignOfMonth, CharityCard, Checkbox, Chip, Chips, ComboField, ComboFieldExpander, CommentSection, CommentSectionV2, Cropper, DatePicker, DonateCard, DonationForm, DonationFormV2, Elevation, FeaturedCampaignCard, FieldHelperText, FieldLabel, Flex, FooterV2, FundraisingSection, Grid, HeartToggle, HeroBnner as HeroBanner, HorizontalBar, Icon, IconButton, IconButtonGroup, InputChips, List, Login, MENU_ANCHOR_CLASS, Menu, MenuList, ListDivider as MenuListDivider, MenuListItem, MenuListItemGraphic, ListItemMeta as MenuListItemMeta, MenuListItemText, MenuSurface, Modal, MyCauseTheme, Navigation$1 as Nav, Navigation, PartnerLineChart, PartnerLineChartBlock, PartnerMonthlyDonations, PartnerMonthlyStats, PartnerMonthlyTable, PhoneNumberInput, Popup, ProgressBar, Radio, RadioGroup, Select, SelectHelperText, CustomSingleDatePicker as SingleDatePicker, Spinner, Stack, StartCampaignCard, Statistics, Switch, Tabs, Text, TextField, HelperText as TextFieldHelperText, TextFieldSearch, ThemeContext, ThemeProvider, Uploader, getColorToken, parseNationalPhoneNumber, useTheme };
29837
+ export { Anchor, Avatar, BoldAnchor, Box, Button, ButtonSelect, CampaignCard, CampaignOfMonth, CharityCard, Checkbox, Chip, Chips, ComboField, ComboFieldExpander, CommentSection, CommentSectionV2, Cropper, DatePicker, DonateCard, DonationForm, DonationFormV2, Elevation, FavoriteCharityItem, FeaturedCampaignCard, FieldHelperText, FieldLabel, Flex, FooterV2, FundraisingSection, Grid, HeartToggle, HeroBnner as HeroBanner, HorizontalBar, Icon, IconButton, IconButtonGroup, InputChips, List, Login, MENU_ANCHOR_CLASS, Menu, MenuList, ListDivider as MenuListDivider, MenuListItem, MenuListItemGraphic, ListItemMeta as MenuListItemMeta, MenuListItemText, MenuSurface, Modal, ModalImage, MyAccountChooseCharityCard, FrpPreviewImg as MyAccountFrpPreview, MyAccountSidebar, MyAccountStartFundraiseCard, MyAccountStatsDonated, MyAccountStatsRaised, MyCauseTheme, Navigation$1 as Nav, Navigation, PartnerChartStats, PartnerMonthlyDonations, PartnerMonthlyStats, PartnerMonthlyTable, PartnerToggleButton, PartnerToggleButtonBlock, PhoneNumberInput, Popup, ProgressBar, Radio, RadioGroup, Select, SelectHelperText, CustomSingleDatePicker as SingleDatePicker, Spinner, Stack, StartCampaignCard, Statistics, Switch, Tabs, Text, TextField, HelperText as TextFieldHelperText, TextFieldSearch, ThemeContext, ThemeProvider, ThisMonthCard, Uploader, getColorToken, parseNationalPhoneNumber, useTheme };