tabexseriescomponents 0.0.798 → 0.0.799

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs.js CHANGED
@@ -144,6 +144,7 @@ var FiArrowUpRight = require('@react-icons/all-files/fi/FiArrowUpRight');
144
144
  var BiUserCircle = require('@react-icons/all-files/bi/BiUserCircle');
145
145
  var FiArrowUpLeft = require('@react-icons/all-files/fi/FiArrowUpLeft');
146
146
  var GoLocation = require('@react-icons/all-files/go/GoLocation');
147
+ var FaSnapchat = require('@react-icons/all-files/fa/FaSnapchat');
147
148
  var RiRoadMapLine = require('@react-icons/all-files/ri/RiRoadMapLine');
148
149
  var HiOutlineClock = require('@react-icons/all-files/hi/HiOutlineClock');
149
150
  var AiOutlineLinkedin = require('@react-icons/all-files/ai/AiOutlineLinkedin');
@@ -17260,6 +17261,121 @@ var Filter$1 = function Filter(props) {
17260
17261
  _useState30 = _slicedToArray__default["default"](_useState29, 2),
17261
17262
  checked = _useState30[0],
17262
17263
  setChecked = _useState30[1];
17264
+ var PriceInputRangeFilter = function PriceInputRangeFilter() {
17265
+ return /*#__PURE__*/React__default["default"].createElement("div", {
17266
+ "class": "row m-0 w-100 mb-3 mt-2"
17267
+ }, /*#__PURE__*/React__default["default"].createElement("div", {
17268
+ "class": "col-lg-12 p-0 text-start mb-2"
17269
+ }, /*#__PURE__*/React__default["default"].createElement("p", {
17270
+ className: langdetect == 'en' ? filter_cssstyles.collapsetitle + ' m-0 p-0 ' : filter_cssstyles.collapsetitle + ' m-0 p-0 text-right'
17271
+ }, langdetect == 'en' ? 'Price' : 'السعر')), /*#__PURE__*/React__default["default"].createElement("div", {
17272
+ "class": 'col-lg-12 pl-4 pr-4 mt-2 mb-2',
17273
+ style: {
17274
+ direction: 'ltr'
17275
+ }
17276
+ }, /*#__PURE__*/React__default["default"].createElement(InputRange__default["default"], {
17277
+ draggableTrack: true,
17278
+ formatLabel: function formatLabel(value) {
17279
+ return "".concat(value);
17280
+ }
17281
+ // maxValue={parseInt(sectionproperties.filterpricemaxvalue)}
17282
+ // minValue={parseInt(sectionproperties.filterpriceminvalue)}
17283
+ // value={temppricevalue}
17284
+ ,
17285
+ onChange: function onChange(e) {
17286
+ // // setpricevalue({ ...value });
17287
+ // var isattrexists = false;
17288
+ // var tempproductfeatuesarr = [...productfeatuesarr];
17289
+ // tempproductfeatuesarr?.forEach(function (attritem, attrindex) {
17290
+ // if (attritem.id == item.id) {
17291
+ // tempproductfeatuesarr[attrindex].value = e.min;
17292
+ // tempproductfeatuesarr[attrindex].valuemax = e.max;
17293
+ // isattrexists = true;
17294
+ // }
17295
+ // });
17296
+ // if (isattrexists == false) {
17297
+ // tempproductfeatuesarr.push({
17298
+ // id: item.id,
17299
+ // value: e.min,
17300
+ // valuemax: e.max,
17301
+ // });
17302
+ // }
17303
+ // setproductfeatuesarr([...tempproductfeatuesarr]);
17304
+ }
17305
+ })));
17306
+ };
17307
+ var PriceFromToFilter = function PriceFromToFilter() {
17308
+ return /*#__PURE__*/React__default["default"].createElement("div", {
17309
+ "class": "row m-0 w-100 mb-3 mt-2"
17310
+ }, /*#__PURE__*/React__default["default"].createElement("div", {
17311
+ "class": "col-lg-12 p-0 text-start mb-2"
17312
+ }, /*#__PURE__*/React__default["default"].createElement("p", {
17313
+ className: langdetect == 'en' ? filter_cssstyles.collapsetitle + ' m-0 p-0 ' : filter_cssstyles.collapsetitle + ' m-0 p-0 text-right'
17314
+ }, langdetect == 'en' ? 'Price' : 'السعر')), /*#__PURE__*/React__default["default"].createElement("div", {
17315
+ className: langdetect == 'en' ? 'col-6 pl-0 pr-1' : 'col-6 pr-0 pl-1'
17316
+ }, /*#__PURE__*/React__default["default"].createElement("label", {
17317
+ className: "".concat(filter_cssstyles.collapsetitle) + ' d-flex justify-content-start '
17318
+ }, langdetect == 'en' ? 'From' : 'من'), /*#__PURE__*/React__default["default"].createElement("input", {
17319
+ type: "text",
17320
+ value: pricevalue2.min,
17321
+ onChange: function onChange(event) {
17322
+ var temppricevalue = _objectSpread$2e({}, pricevalue2);
17323
+ temppricevalue.min = event.target.value;
17324
+ setpricevalue2(_objectSpread$2e({}, temppricevalue));
17325
+ // var temppayloadobj = { ...pricefrom };
17326
+ // temppayloadobj = event.target.value;
17327
+ // setpricefrom({ ...temppayloadobj });
17328
+ },
17329
+ style: {
17330
+ background: '#fff',
17331
+ border: '1px solid #ccc',
17332
+ borderRadius: 5,
17333
+ color: '#000',
17334
+ height: 35,
17335
+ width: '100%',
17336
+ paddingLeft: 10,
17337
+ paddingRight: 10
17338
+ }
17339
+ })), /*#__PURE__*/React__default["default"].createElement("div", {
17340
+ className: langdetect == 'en' ? 'col-6 pr-0 pl-1' : 'col-6 pl-0 pr-1'
17341
+ }, /*#__PURE__*/React__default["default"].createElement("label", {
17342
+ className: "".concat(filter_cssstyles.collapsetitle) + ' d-flex justify-content-start '
17343
+ }, langdetect == 'en' ? 'To' : 'إلى'), /*#__PURE__*/React__default["default"].createElement("input", {
17344
+ type: "text",
17345
+ value: pricevalue2.max,
17346
+ onChange: function onChange(event) {
17347
+ // var temppayloadobj = { ...priceto };
17348
+ // temppayloadobj = event.target.value;
17349
+ // setpriceto({ ...temppayloadobj });
17350
+ var temppricevalue = _objectSpread$2e({}, pricevalue2);
17351
+ temppricevalue.max = event.target.value;
17352
+ setpricevalue2(_objectSpread$2e({}, temppricevalue));
17353
+ },
17354
+ style: {
17355
+ width: '100%',
17356
+ background: '#fff',
17357
+ border: '1px solid #ccc',
17358
+ borderRadius: 5,
17359
+ color: '#000',
17360
+ height: 35,
17361
+ paddingRight: 10,
17362
+ paddingLeft: 10
17363
+ }
17364
+ })));
17365
+ };
17366
+ var ClearFilterButton = function ClearFilterButton() {
17367
+ return /*#__PURE__*/React__default["default"].createElement("div", {
17368
+ "class": "col-lg-12"
17369
+ }, /*#__PURE__*/React__default["default"].createElement("button", {
17370
+ "class": "w-100 bg-primary bg-secondaryhover",
17371
+ style: {
17372
+ height: 40,
17373
+ borderRadius: 100
17374
+ }
17375
+ }, /*#__PURE__*/React__default["default"].createElement("p", {
17376
+ "class": "m-0 p-0 text-white"
17377
+ }, "Clear Filter")));
17378
+ };
17263
17379
  // const queryParameters = new URLSearchParams(window.location.search);
17264
17380
  // useEffect(() => {
17265
17381
  // // setsortbycontext('Sort By');
@@ -17610,7 +17726,7 @@ var Filter$1 = function Filter(props) {
17610
17726
  className: "mt-2 mb-3"
17611
17727
  })), /*#__PURE__*/React__default["default"].createElement("div", {
17612
17728
  className: filter_cssstyles.filteraccordion + ' col-lg-12 filter-accordion p-md-0 pl-4 pr-4 '
17613
- }, sectionproperties.showcountriesfilter == 'Show' && Countriesfilter(), sectionproperties.filterType == 'All' && sectionproperties.showcategoriesfilter == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
17729
+ }, sectionproperties.showpricefilterfromto == 'Show' && PriceFromToFilter(), sectionproperties.showpricerangefilter == 'Show' && PriceInputRangeFilter(), sectionproperties.showcountriesfilter == 'Show' && Countriesfilter(), sectionproperties.filterType == 'All' && sectionproperties.showcategoriesfilter == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
17614
17730
  "class": "row m-0 w-100"
17615
17731
  }, CategoriesFilter()), sectionproperties.filterType == 'Collections' && sectionproperties.showcategoriesfilter == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
17616
17732
  "class": "row m-0 w-100"
@@ -17657,7 +17773,7 @@ var Filter$1 = function Filter(props) {
17657
17773
  color: item.isfilterselected ? sectionproperties.activecat_color : ''
17658
17774
  }
17659
17775
  }, langdetect == 'en' ? item.vendorname : item.vendorname)));
17660
- }))))))), /*#__PURE__*/React__default["default"].createElement("div", {
17776
+ })))), ClearFilterButton()))), /*#__PURE__*/React__default["default"].createElement("div", {
17661
17777
  className: "col-lg-12"
17662
17778
  }, /*#__PURE__*/React__default["default"].createElement(reactBootstrap.Offcanvas, {
17663
17779
  show: props === null || props === void 0 ? void 0 : props.openFilterSlider,
@@ -17944,69 +18060,9 @@ var Filter$1 = function Filter(props) {
17944
18060
  onChange: function onChange(value) {
17945
18061
  setraterangevalue(_objectSpread$2e({}, value));
17946
18062
  }
17947
- }))))), authdetailsContext.instinfo.instid == '673f49cede6cb' && /*#__PURE__*/React__default["default"].createElement("div", {
17948
- "class": "row m-0 w-100 mb-3 mt-2"
17949
- }, /*#__PURE__*/React__default["default"].createElement("div", {
17950
- "class": "col-lg-12 p-0 text-start mb-2"
17951
- }, /*#__PURE__*/React__default["default"].createElement("p", {
17952
- className: langdetect == 'en' ? filter_cssstyles.collapsetitle + ' m-0 p-0 ' : filter_cssstyles.collapsetitle + ' m-0 p-0 text-right'
17953
- }, langdetect == 'en' ? 'Price' : 'السعر')), /*#__PURE__*/React__default["default"].createElement("div", {
17954
- className: langdetect == 'en' ? 'col-6 pl-0 pr-1' : 'col-6 pr-0 pl-1'
17955
- }, /*#__PURE__*/React__default["default"].createElement("label", {
17956
- className: "".concat(filter_cssstyles.collapsetitle) + ' d-flex justify-content-start '
17957
- }, langdetect == 'en' ? 'From' : 'من'), /*#__PURE__*/React__default["default"].createElement("input", {
17958
- type: "text",
17959
- value: pricevalue2.min,
17960
- onChange: function onChange(event) {
17961
- var temppricevalue = _objectSpread$2e({}, pricevalue2);
17962
- temppricevalue.min = event.target.value;
17963
- setpricevalue2(_objectSpread$2e({}, temppricevalue));
17964
- // var temppayloadobj = { ...pricefrom };
17965
- // temppayloadobj = event.target.value;
17966
- // setpricefrom({ ...temppayloadobj });
17967
- },
17968
- style: {
17969
- background: '#fff',
17970
- border: '1px solid #ccc',
17971
- borderRadius: 5,
17972
- color: '#000',
17973
- height: 35,
17974
- width: '100%',
17975
- paddingLeft: 10,
17976
- paddingRight: 10
17977
- }
17978
- })), /*#__PURE__*/React__default["default"].createElement("div", {
17979
- className: langdetect == 'en' ? 'col-6 pr-0 pl-1' : 'col-6 pl-0 pr-1'
17980
- }, /*#__PURE__*/React__default["default"].createElement("label", {
17981
- className: "".concat(filter_cssstyles.collapsetitle) + ' d-flex justify-content-start '
17982
- }, langdetect == 'en' ? 'To' : 'إلى'), /*#__PURE__*/React__default["default"].createElement("input", {
17983
- type: "text",
17984
- value: pricevalue2.max,
17985
- onChange: function onChange(event) {
17986
- // var temppayloadobj = { ...priceto };
17987
- // temppayloadobj = event.target.value;
17988
- // setpriceto({ ...temppayloadobj });
17989
- var temppricevalue = _objectSpread$2e({}, pricevalue2);
17990
- temppricevalue.max = event.target.value;
17991
- setpricevalue2(_objectSpread$2e({}, temppricevalue));
17992
- },
17993
- style: {
17994
- width: '100%',
17995
- background: '#fff',
17996
- border: '1px solid #ccc',
17997
- borderRadius: 5,
17998
- color: '#000',
17999
- height: 35,
18000
- paddingRight: 10,
18001
- paddingLeft: 10
18002
- }
18003
- }))), sectionproperties.showcountriesfilter == 'Show' && Countriesfilter(), sectionproperties.showvariantsfilter == 'Show' && InstFilters(), sectionproperties.filterType == 'All' && sectionproperties.showcategoriesfilter == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
18063
+ }))))), sectionproperties.showpricefilterfromto == 'Show' && PriceFromToFilter(), sectionproperties.showpricerangefilter == 'Show' && PriceInputRangeFilter(), sectionproperties.showcountriesfilter == 'Show' && Countriesfilter(), sectionproperties.showvariantsfilter == 'Show' && InstFilters(), sectionproperties.showdynamicfilter == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
18004
18064
  "class": "row m-0 w-100 mb-3"
18005
- }, CategoriesFilter()), sectionproperties.filterType == 'Collections' && sectionproperties.showcategoriesfilter == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
18006
- "class": "row m-0 w-100 mb-3"
18007
- }, CollectionsFilter()), sectionproperties.showdynamicfilter == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
18008
- "class": "row m-0 w-100 mb-3"
18009
- }, DynamicFilter())))), /*#__PURE__*/React__default["default"].createElement("div", {
18065
+ }, DynamicFilter()), ClearFilterButton()))), /*#__PURE__*/React__default["default"].createElement("div", {
18010
18066
  className: "col-lg-12"
18011
18067
  }, /*#__PURE__*/React__default["default"].createElement(reactBootstrap.Offcanvas, {
18012
18068
  show: props === null || props === void 0 ? void 0 : props.openFilterSlider,
@@ -20619,7 +20675,10 @@ var ShippingPolicy = function ShippingPolicy(props) {
20619
20675
  paddingRight: sectionproperties.cardpaddinghorizontal + 'px',
20620
20676
  paddingTop: sectionproperties.cardpaddingvertical + 'px',
20621
20677
  paddingBottom: sectionproperties.cardpaddingvertical + 'px',
20622
- backgroundColor: sectionproperties.backgroundColor
20678
+ backgroundColor: sectionproperties.backgroundColor,
20679
+ '@media (max-width: 800px)': {
20680
+ paddingTop: sectionproperties.paddingtopresponsive + 'px'
20681
+ }
20623
20682
  }),
20624
20683
  sectiontitle: glamor.css({
20625
20684
  fontSize: sectionproperties.sectionTitleFontSize + 'px',
@@ -20742,7 +20801,10 @@ var TermsConditions = function TermsConditions(props) {
20742
20801
  paddingRight: sectionproperties.cardpaddinghorizontal + 'px',
20743
20802
  paddingTop: sectionproperties.cardpaddingvertical + 'px',
20744
20803
  paddingBottom: sectionproperties.cardpaddingvertical + 'px',
20745
- backgroundColor: sectionproperties.backgroundColor
20804
+ backgroundColor: sectionproperties.backgroundColor,
20805
+ '@media (max-width: 800px)': {
20806
+ paddingTop: sectionproperties.paddingtopresponsive + 'px'
20807
+ }
20746
20808
  }),
20747
20809
  sectiontitle: glamor.css({
20748
20810
  fontSize: sectionproperties.sectionTitleFontSize + 'px',
@@ -31561,7 +31623,8 @@ var Simpleheader = function Simpleheader(props) {
31561
31623
  style: {
31562
31624
  position: 'fixed',
31563
31625
  bottom: sectionproperties.floatingbtnfrombottom + 'px',
31564
- right: sectionproperties.floatingbtnfromright + 'px',
31626
+ right: langdetect == 'en' ? sectionproperties.floatingbtnfromright + 'px' : '',
31627
+ left: langdetect == 'ar' ? sectionproperties.floatingbtnfromright + 'px' : '',
31565
31628
  zIndex: 2000,
31566
31629
  transition: 'all 0.3s ease-out',
31567
31630
  width: '100%',
@@ -31585,8 +31648,9 @@ var Simpleheader = function Simpleheader(props) {
31585
31648
  }, langdetect == 'en' ? sectionproperties.floatingbtntxten : sectionproperties.floatingbtntxtar))), sectionproperties.showfloatingbtn == 'Show when logged in' && authdetailsContext.loggedin && /*#__PURE__*/React__default["default"].createElement("div", {
31586
31649
  style: {
31587
31650
  position: 'fixed',
31588
- bottom: 15,
31589
- right: 15,
31651
+ bottom: sectionproperties.floatingbtnfrombottom + 'px',
31652
+ right: langdetect == 'en' ? sectionproperties.floatingbtnfromright + 'px' : '',
31653
+ left: langdetect == 'ar' ? sectionproperties.floatingbtnfromright + 'px' : '',
31590
31654
  zIndex: 2000,
31591
31655
  transition: 'all 0.3s ease-out',
31592
31656
  width: '100%'
@@ -31612,7 +31676,8 @@ var Simpleheader = function Simpleheader(props) {
31612
31676
  style: {
31613
31677
  position: 'fixed',
31614
31678
  bottom: sectionproperties.whatsapppositionfrombottom + 'px',
31615
- right: sectionproperties.whatsapppositionfromright + 'px',
31679
+ right: langdetect == 'en' ? sectionproperties.whatsapppositionfromright + 'px' : '',
31680
+ left: langdetect == 'ar' ? sectionproperties.whatsapppositionfromright + 'px' : '',
31616
31681
  zIndex: 2000,
31617
31682
  transition: 'all 0.3s ease-out'
31618
31683
  }
@@ -31958,16 +32023,50 @@ var Simpleheader = function Simpleheader(props) {
31958
32023
  }
31959
32024
  }, langdetect == 'en' && /*#__PURE__*/React__default["default"].createElement("div", {
31960
32025
  "class": "".concat(header_cssstyles.languagecontainer) + ' row m-0 allcentered w-100 '
31961
- }, /*#__PURE__*/React__default["default"].createElement("p", {
32026
+ }, sectionproperties.flagIcon == 'Flag' && /*#__PURE__*/React__default["default"].createElement("p", {
32027
+ "class": "m-0 p-0 d-flex align-items-center w-100"
32028
+ }, /*#__PURE__*/React__default["default"].createElement("img", {
32029
+ src: 'https://tabex-co.com/storage/StaticImages/usflag.png',
32030
+ style: {
32031
+ maxWidth: '2.5vh',
32032
+ maxHeight: '2.5vh'
32033
+ }
32034
+ }), /*#__PURE__*/React__default["default"].createElement("div", {
32035
+ style: {
32036
+ height: '20px',
32037
+ width: '1.5px',
32038
+ background: '#e6e6e6'
32039
+ },
32040
+ "class": "ml-2 mr-2"
32041
+ }), /*#__PURE__*/React__default["default"].createElement("i", {
32042
+ "class": "h-100 allcentered mr-auto pr-3"
32043
+ }, /*#__PURE__*/React__default["default"].createElement(BsChevronDown.BsChevronDown, null))), sectionproperties.flagIcon == 'Icon' && /*#__PURE__*/React__default["default"].createElement("p", {
31962
32044
  "class": "m-0 p-0 d-flex align-items-center w-100"
31963
32045
  }, "En", ' ', /*#__PURE__*/React__default["default"].createElement("i", {
31964
32046
  "class": "h-100 allcentered ml-auto pl-3"
31965
32047
  }, /*#__PURE__*/React__default["default"].createElement(BsChevronDown.BsChevronDown, null)))), langdetect == 'ar' && /*#__PURE__*/React__default["default"].createElement("div", {
31966
32048
  "class": "".concat(header_cssstyles.languagecontainer) + ' row m-0 allcentered w-100 '
31967
- }, /*#__PURE__*/React__default["default"].createElement("p", {
32049
+ }, sectionproperties.flagIcon == 'Icon' && /*#__PURE__*/React__default["default"].createElement("p", {
31968
32050
  "class": "m-0 p-0 d-flex align-items-center w-100"
31969
32051
  }, "\u0639", ' ', /*#__PURE__*/React__default["default"].createElement("i", {
31970
32052
  "class": "h-100 allcentered mr-auto pr-3"
32053
+ }, /*#__PURE__*/React__default["default"].createElement(BsChevronDown.BsChevronDown, null))), sectionproperties.flagIcon == 'Flag' && /*#__PURE__*/React__default["default"].createElement("p", {
32054
+ "class": "m-0 p-0 d-flex align-items-center w-100"
32055
+ }, /*#__PURE__*/React__default["default"].createElement("img", {
32056
+ src: 'https://tabex-co.com/storage/StaticImages/egyptflag.png',
32057
+ style: {
32058
+ maxWidth: '2.5vh',
32059
+ maxHeight: '2.5vh'
32060
+ }
32061
+ }), /*#__PURE__*/React__default["default"].createElement("div", {
32062
+ style: {
32063
+ height: '20px',
32064
+ width: '1.5px',
32065
+ background: '#e6e6e6'
32066
+ },
32067
+ "class": "ml-2 mr-2"
32068
+ }), /*#__PURE__*/React__default["default"].createElement("i", {
32069
+ "class": "h-100 allcentered mr-auto pr-3"
31971
32070
  }, /*#__PURE__*/React__default["default"].createElement(BsChevronDown.BsChevronDown, null))))), sectionproperties.showlanuagecontainer == 'Show' && sectionproperties.languagecontainertype == 'Dropdown' && /*#__PURE__*/React__default["default"].createElement("div", {
31972
32071
  "class": langdetect == 'en' ? 'headerdropdownml' : 'headerdropdownmr'
31973
32072
  }, /*#__PURE__*/React__default["default"].createElement(Dropdown__default["default"], null, /*#__PURE__*/React__default["default"].createElement(Dropdown__default["default"].Toggle, null, /*#__PURE__*/React__default["default"].createElement("li", {
@@ -45515,7 +45614,7 @@ var Minimalheader = function Minimalheader(props) {
45515
45614
  function ownKeys$1F(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
45516
45615
  function _objectSpread$1F(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$1F(Object(t), !0).forEach(function (r) { _defineProperty__default["default"](e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$1F(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
45517
45616
  var Allinonefooter = function Allinonefooter(props) {
45518
- var _logoarrayofobjects$, _logoarrayofobjects$2, _authdetailsContext$i4, _authdetailsContext$i5, _templatepropcontext$, _authdetailsContext$i8, _authdetailsContext$i11, _authdetailsContext$i14;
45617
+ var _logoarrayofobjects$, _logoarrayofobjects$2, _authdetailsContext$i4, _authdetailsContext$i5, _templatepropcontext$, _authdetailsContext$i8, _authdetailsContext$i11, _authdetailsContext$i14, _authdetailsContext$i17, _authdetailsContext$i20, _authdetailsContext$i22;
45519
45618
  var _useState = React.useState(''),
45520
45619
  _useState2 = _slicedToArray__default["default"](_useState, 2),
45521
45620
  sectionproperties = _useState2[0],
@@ -45919,7 +46018,7 @@ var Allinonefooter = function Allinonefooter(props) {
45919
46018
  }, langdetect == 'en' ? sectionproperties.otherinfotitle2en : sectionproperties.otherinfotitle2ar)), /*#__PURE__*/React__default["default"].createElement("div", {
45920
46019
  "class": "col-lg-12 p-0 d-flex align-items-center justify-content-start"
45921
46020
  }, sectionproperties.fbbtn_show == 'Show' && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i8 = authdetailsContext.instinfo) === null || _authdetailsContext$i8 === void 0 ? void 0 : _authdetailsContext$i8.facebooklink) != null && /*#__PURE__*/React__default["default"].createElement("div", {
45922
- "class": "".concat(footerStyles.facebook_btn) + ' d-flex align-items-center justify-content-center ',
46021
+ "class": "".concat(footerStyles.facebook_btn) + ' d-flex align-items-center justify-content-center ml-1 mr-1 ',
45923
46022
  onClick: function onClick() {
45924
46023
  var _authdetailsContext$i9;
45925
46024
  if ((authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i9 = authdetailsContext.instinfo) === null || _authdetailsContext$i9 === void 0 ? void 0 : _authdetailsContext$i9.facebooklink) != null) {
@@ -45930,7 +46029,7 @@ var Allinonefooter = function Allinonefooter(props) {
45930
46029
  }, /*#__PURE__*/React__default["default"].createElement(FaFacebookF.FaFacebookF, {
45931
46030
  size: sectionproperties.facebkbtnniconfontsize
45932
46031
  })), sectionproperties.instbtn_show == 'Show' && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i11 = authdetailsContext.instinfo) === null || _authdetailsContext$i11 === void 0 ? void 0 : _authdetailsContext$i11.instagramlink) != null && /*#__PURE__*/React__default["default"].createElement("div", {
45933
- "class": "".concat(footerStyles.instgram_btn) + ' d-flex align-items-center justify-content-center ml-3 mr-3 ',
46032
+ "class": "".concat(footerStyles.instgram_btn) + ' d-flex align-items-center justify-content-center ml-1 mr-1 ',
45934
46033
  onClick: function onClick() {
45935
46034
  var _authdetailsContext$i12;
45936
46035
  if ((authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i12 = authdetailsContext.instinfo) === null || _authdetailsContext$i12 === void 0 ? void 0 : _authdetailsContext$i12.instagramlink) != null) {
@@ -45941,7 +46040,7 @@ var Allinonefooter = function Allinonefooter(props) {
45941
46040
  }, /*#__PURE__*/React__default["default"].createElement(AiFillInstagram.AiFillInstagram, {
45942
46041
  size: sectionproperties.instgrambtniconfontsize
45943
46042
  })), sectionproperties.youtbtn_show == 'Show' && (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i14 = authdetailsContext.instinfo) === null || _authdetailsContext$i14 === void 0 ? void 0 : _authdetailsContext$i14.whatsappnumber) != null && /*#__PURE__*/React__default["default"].createElement("div", {
45944
- "class": "".concat(footerStyles.youtube_btn) + ' d-flex align-items-center justify-content-center ',
46043
+ "class": "".concat(footerStyles.youtube_btn) + ' d-flex align-items-center justify-content-center ml-1 mr-1 ',
45945
46044
  onClick: function onClick() {
45946
46045
  var _authdetailsContext$i15;
45947
46046
  if ((authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i15 = authdetailsContext.instinfo) === null || _authdetailsContext$i15 === void 0 ? void 0 : _authdetailsContext$i15.whatsappnumber) != null) {
@@ -45951,6 +46050,33 @@ var Allinonefooter = function Allinonefooter(props) {
45951
46050
  }
45952
46051
  }, /*#__PURE__*/React__default["default"].createElement(FaWhatsapp.FaWhatsapp, {
45953
46052
  size: sectionproperties.youtubebtniconfontsize
46053
+ })), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i17 = authdetailsContext.instinfo) === null || _authdetailsContext$i17 === void 0 ? void 0 : _authdetailsContext$i17.tiktoklink) != null && /*#__PURE__*/React__default["default"].createElement("div", {
46054
+ "class": "".concat(footerStyles.youtube_btn) + ' d-flex align-items-center justify-content-center ml-1 mr-1 ',
46055
+ onClick: function onClick() {
46056
+ var _authdetailsContext$i18;
46057
+ if ((authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i18 = authdetailsContext.instinfo) === null || _authdetailsContext$i18 === void 0 ? void 0 : _authdetailsContext$i18.tiktoklink) != null) {
46058
+ var _authdetailsContext$i19;
46059
+ window.open(authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i19 = authdetailsContext.instinfo) === null || _authdetailsContext$i19 === void 0 ? void 0 : _authdetailsContext$i19.tiktoklink, '_blank');
46060
+ }
46061
+ }
46062
+ }, /*#__PURE__*/React__default["default"].createElement(IoLogoTiktok.IoLogoTiktok, {
46063
+ size: sectionproperties.instgrambtniconfontsize
46064
+ })), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i20 = authdetailsContext.instinfo) === null || _authdetailsContext$i20 === void 0 ? void 0 : _authdetailsContext$i20.snapchatlink) != null && /*#__PURE__*/React__default["default"].createElement("div", {
46065
+ "class": "".concat(footerStyles.youtube_btn) + ' d-flex align-items-center justify-content-center ml-1 mr-1 ',
46066
+ onClick: function onClick() {
46067
+ var _authdetailsContext$i21;
46068
+ window.open(authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i21 = authdetailsContext.instinfo) === null || _authdetailsContext$i21 === void 0 ? void 0 : _authdetailsContext$i21.snapchatlink, '_blank');
46069
+ }
46070
+ }, /*#__PURE__*/React__default["default"].createElement(FaSnapchat.FaSnapchat, {
46071
+ size: sectionproperties.instgrambtniconfontsize
46072
+ })), (authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i22 = authdetailsContext.instinfo) === null || _authdetailsContext$i22 === void 0 ? void 0 : _authdetailsContext$i22.linkedinlink) != null && /*#__PURE__*/React__default["default"].createElement("div", {
46073
+ "class": "".concat(footerStyles.youtube_btn) + ' d-flex align-items-center justify-content-center ',
46074
+ onClick: function onClick() {
46075
+ var _authdetailsContext$i23;
46076
+ window.open(authdetailsContext === null || authdetailsContext === void 0 || (_authdetailsContext$i23 = authdetailsContext.instinfo) === null || _authdetailsContext$i23 === void 0 ? void 0 : _authdetailsContext$i23.linkedinlink, '_blank');
46077
+ }
46078
+ }, /*#__PURE__*/React__default["default"].createElement(FaLinkedinIn.FaLinkedinIn, {
46079
+ size: sectionproperties.instgrambtniconfontsize
45954
46080
  })))))))), sectionproperties.showpaymentfooter == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
45955
46081
  className: "row m-0 w-100 d-flex d-md-none"
45956
46082
  }, /*#__PURE__*/React__default["default"].createElement("div", {
@@ -56442,7 +56568,6 @@ var UsersCardsSection = function UsersCardsSection(props) {
56442
56568
  function ownKeys$1k(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
56443
56569
  function _objectSpread$1k(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys$1k(Object(t), !0).forEach(function (r) { _defineProperty__default["default"](e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$1k(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
56444
56570
  var CollapsableSection = function CollapsableSection(props) {
56445
- var _maincontainerarrayof;
56446
56571
  var _useState = React.useState(''),
56447
56572
  _useState2 = _slicedToArray__default["default"](_useState, 2),
56448
56573
  sectionproperties = _useState2[0],
@@ -56598,6 +56723,143 @@ var CollapsableSection = function CollapsableSection(props) {
56598
56723
  }
56599
56724
  }, langdetect == 'en' ? sectionproperties.descriptionContentEn : sectionproperties.descriptionContentAr);
56600
56725
  };
56726
+ var CollapsibleSectionContent = function CollapsibleSectionContent() {
56727
+ var _maincontainerarrayof;
56728
+ return /*#__PURE__*/React__default["default"].createElement("div", {
56729
+ "class": "row m-0 w-100"
56730
+ }, sectionproperties.maincontainerarrayofobjs != undefined && sectionproperties.maincontainerarrayofobjs.length != 0 && /*#__PURE__*/React__default["default"].createElement("div", {
56731
+ "class": section_styles.imgcontainer
56732
+ }, /*#__PURE__*/React__default["default"].createElement(Imagekitimagecomp, {
56733
+ urlEndpoint: ikimagecredcontext === null || ikimagecredcontext === void 0 ? void 0 : ikimagecredcontext.ikimageendpoint,
56734
+ publicKey: ikimagecredcontext === null || ikimagecredcontext === void 0 ? void 0 : ikimagecredcontext.ikimagepublickey,
56735
+ path: (_maincontainerarrayof = maincontainerarrayofobjs[0]) === null || _maincontainerarrayof === void 0 ? void 0 : _maincontainerarrayof.back_bgimage,
56736
+ style: {
56737
+ height: '100%',
56738
+ width: '100%',
56739
+ objectFit: 'cover',
56740
+ margin: 0,
56741
+ padding: 0,
56742
+ position: 'absolute',
56743
+ top: 0,
56744
+ bottom: 0,
56745
+ right: 0,
56746
+ left: 0
56747
+ }
56748
+ })), /*#__PURE__*/React__default["default"].createElement("div", {
56749
+ "class": "col-lg-12 px-1025-1 pl-md-3 pr-md-3 pr-sm-2 pl-sm-2",
56750
+ style: {
56751
+ zIndex: 1,
56752
+ paddingLeft: sectionproperties.paddingLeft + 'px',
56753
+ paddingRight: sectionproperties.paddingRight + 'px',
56754
+ paddingTop: sectionproperties.paddingTop + 'px',
56755
+ paddingBottom: sectionproperties.paddingBottom + 'px'
56756
+ }
56757
+ }, /*#__PURE__*/React__default["default"].createElement("div", {
56758
+ "class": "row m-0 w-100"
56759
+ }, sectionproperties.sectiontitleshow == 'Show' && sectionproperties.sectiontitlestyle == 'Line Under Text' && /*#__PURE__*/React__default["default"].createElement("div", {
56760
+ "class": "col-lg-12 col-md-12 col-sm-12 d-flex align-items-center p-0",
56761
+ style: {
56762
+ justifyContent: sectionproperties.sectiontitleposition == 'Centered' ? 'center' : 'start'
56763
+ }
56764
+ }, /*#__PURE__*/React__default["default"].createElement("div", {
56765
+ "class": "".concat(generalstyles.sectiontitlecont),
56766
+ style: {
56767
+ marginTop: sectionproperties.sectionTitleMarginTop + 'px',
56768
+ marginBottom: sectionproperties.sectionTitleMarginBottom + 'px'
56769
+ }
56770
+ }, /*#__PURE__*/React__default["default"].createElement("span", {
56771
+ "class": sectionproperties.sectiontitlefontfamily == 'Pacifico' ? "".concat(section_styles.sectiontitlespan) + ' PacificoFont mb-0 pb-0 wordbreak ' : sectionproperties.sectiontitlefontfamily == 'Playfair' ? "".concat(section_styles.sectiontitlespan) + ' PlayfairFont mb-0 pb-0 wordbreak ' : sectionproperties.sectiontitlefontfamily == 'Great Vibes' ? "".concat(section_styles.sectiontitlespan) + ' GreatvibesFont mb-0 pb-0 wordbreak ' : sectionproperties.sectiontitlefontfamily == 'Quicksand' ? "".concat(section_styles.sectiontitlespan) + ' QuicksandFont mb-0 pb-0 wordbreak ' : sectionproperties.sectiontitlefontfamily == 'Satisfy' ? "".concat(section_styles.sectiontitlespan) + ' SatisfyFont mb-0 pb-0 wordbreak ' : "".concat(section_styles.sectiontitlespan) + ' mb-0 pb-0 wordbreak ',
56772
+ style: {
56773
+ color: sectionproperties.sectionTitleColor,
56774
+ fontSize: sectionproperties.sectionTitleFontSize + 'px',
56775
+ textTransform: sectionproperties.sectionTitleTextTransform,
56776
+ fontWeight: sectionproperties.sectionTitleFontWeight,
56777
+ textAlign: langdetect == 'en' ? 'left' : 'right'
56778
+ }
56779
+ }, langdetect == 'en' ? sectionproperties.sectionTitleContent : sectionproperties.sectionTitleContent_ar))), sectionproperties.sectiontitleshow == 'Show' && sectionproperties.sectiontitlestyle == 'Line Before Text' && /*#__PURE__*/React__default["default"].createElement("div", {
56780
+ "class": "col-lg-12 col-md-12 col-sm-12 d-flex align-items-center p-0",
56781
+ style: {
56782
+ justifyContent: sectionproperties.sectiontitleposition == 'Centered' ? 'center' : 'start'
56783
+ }
56784
+ }, /*#__PURE__*/React__default["default"].createElement("div", {
56785
+ "class": "".concat(generalstyles.sectiontitlecont2),
56786
+ style: {
56787
+ marginTop: sectionproperties.sectionTitleMarginTop + 'px',
56788
+ marginBottom: sectionproperties.sectionTitleMarginBottom + 'px'
56789
+ }
56790
+ }, /*#__PURE__*/React__default["default"].createElement("span", {
56791
+ "class": "".concat(section_styles.sectiontitlespan2),
56792
+ style: {
56793
+ color: sectionproperties.sectionTitleColor,
56794
+ fontSize: sectionproperties.sectionTitleFontSize + 'px',
56795
+ textTransform: sectionproperties.sectionTitleTextTransform,
56796
+ fontWeight: sectionproperties.sectionTitleFontWeight
56797
+ }
56798
+ }, langdetect == 'en' ? sectionproperties.sectionTitleContent : sectionproperties.sectionTitleContent_ar))), sectionproperties.prodCatShow == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
56799
+ "class": ' col-lg-12 col-md-12 col-sm-12 d-flex d-md-none align-items-center p-0 ',
56800
+ style: {
56801
+ justifyContent: sectionproperties.descriptionCentered == 'Centered' ? 'center' : 'start',
56802
+ marginBottom: sectionproperties.descriptionMarginBottom + 'px',
56803
+ paddingLeft: langdetect == 'en' ? sectionproperties.description_marginLeft + 'px' : sectionproperties.description_marginRight + 'px',
56804
+ paddingRight: langdetect == 'en' ? sectionproperties.description_marginRight + 'px' : sectionproperties.description_marginLeft + 'px',
56805
+ fontSize: sectionproperties.prodCatFontSize + 'px'
56806
+ }
56807
+ }, DescriptionContent()), sectionproperties.prodCatShow == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
56808
+ "class": ' col-lg-12 col-md-12 col-sm-12 d-none d-md-flex align-items-center p-0 ',
56809
+ style: {
56810
+ justifyContent: sectionproperties.descriptionCentered == 'Centered' ? 'center' : 'start',
56811
+ marginBottom: sectionproperties.descriptionMarginBottom + 'px',
56812
+ paddingLeft: langdetect == 'en' ? sectionproperties.description_marginLeft + 'px' : sectionproperties.description_marginRight + 'px',
56813
+ paddingRight: langdetect == 'en' ? sectionproperties.description_marginRight + 'px' : sectionproperties.description_marginLeft + 'px',
56814
+ fontSize: sectionproperties.prodCatFontSizeResp + 'px'
56815
+ }
56816
+ }, DescriptionContent()), /*#__PURE__*/React__default["default"].createElement("div", {
56817
+ "class": "row m-0 w-100 d-flex justify-content-center justify-content-md-start"
56818
+ }, cardsarray.map(function (cardinfoitem, cardinfoindex) {
56819
+ return /*#__PURE__*/React__default["default"].createElement("div", {
56820
+ className: section_styles.accordion + ' mb-3 '
56821
+ }, /*#__PURE__*/React__default["default"].createElement(reactAccessibleAccordion.Accordion, {
56822
+ allowMultipleExpanded: true,
56823
+ allowZeroExpanded: true,
56824
+ "class": 'accordionnobefore'
56825
+ }, /*#__PURE__*/React__default["default"].createElement(reactAccessibleAccordion.AccordionItem, null, /*#__PURE__*/React__default["default"].createElement(reactAccessibleAccordion.AccordionItemHeading, {
56826
+ "class": section_styles.accordionheading
56827
+ }, /*#__PURE__*/React__default["default"].createElement(reactAccessibleAccordion.AccordionItemButton, {
56828
+ "class": section_styles.accordionbutton
56829
+ }, /*#__PURE__*/React__default["default"].createElement("div", {
56830
+ "class": "row m-0 w-100"
56831
+ }, /*#__PURE__*/React__default["default"].createElement("div", {
56832
+ "class": "col-lg-8 col-md-8 col-sm-8 p-0 d-flex align-items-center justify-content-start"
56833
+ }, /*#__PURE__*/React__default["default"].createElement("p", {
56834
+ "class": sectionproperties.slideshowtext2_show == 'Show' ? section_styles.text1 + ' pname p-0 m-0 wordbreak ' : section_styles.text1 + ' pname p-0 m-0 wordbreak mt-auto mb-auto '
56835
+ }, langdetect == 'en' ? cardsarray[cardinfoindex].cardobj_titleen : cardsarray[cardinfoindex].cardobj_titlear)), /*#__PURE__*/React__default["default"].createElement("div", {
56836
+ "class": "col-lg-4 col-md-4 col-sm-4 p-0 d-flex align-items-center justify-content-end"
56837
+ }, /*#__PURE__*/React__default["default"].createElement(reactAccessibleAccordion.AccordionItemState, null, function (state) {
56838
+ if (state.expanded == true) {
56839
+ return /*#__PURE__*/React__default["default"].createElement("i", {
56840
+ className: section_styles.accordionicon + ' d-flex align-items-center justify-content-center '
56841
+ }, /*#__PURE__*/React__default["default"].createElement(AiOutlineMinus.AiOutlineMinus, null));
56842
+ } else {
56843
+ return /*#__PURE__*/React__default["default"].createElement("i", {
56844
+ className: section_styles.accordionicon + ' d-flex align-items-center justify-content-center '
56845
+ }, /*#__PURE__*/React__default["default"].createElement(HiOutlinePlus.HiOutlinePlus, null));
56846
+ }
56847
+ }))))), /*#__PURE__*/React__default["default"].createElement(reactAccessibleAccordion.AccordionItemPanel, null, /*#__PURE__*/React__default["default"].createElement("hr", {
56848
+ className: "mt-2 mb-3"
56849
+ }), /*#__PURE__*/React__default["default"].createElement("div", {
56850
+ className: ' row p-0 w-100 mb-3 m-auto '
56851
+ }, sectionproperties.slideshowtext2_show == 'Show' && /*#__PURE__*/React__default["default"].createElement("p", {
56852
+ "class": "m-0 wordbreak ",
56853
+ style: {
56854
+ color: sectionproperties.slideshowText2ContentColor,
56855
+ fontSize: sectionproperties.slideshowText2ContentFontSize + 'px',
56856
+ fontWeight: sectionproperties.slideshowText2ContentFontWeight,
56857
+ textTransform: sectionproperties.slideshowText2ContentTextTransform,
56858
+ textAlign: langdetect == 'en' ? 'left' : 'right'
56859
+ }
56860
+ }, langdetect == 'en' ? cardsarray[cardinfoindex].cardobj_descripen : cardsarray[cardinfoindex].cardobj_descripar))))));
56861
+ })))));
56862
+ };
56601
56863
  return /*#__PURE__*/React__default["default"].createElement("div", {
56602
56864
  "class": ' row ml-0 mr-0 align-items-center w-md-100 ',
56603
56865
  style: {
@@ -56615,138 +56877,12 @@ var CollapsableSection = function CollapsableSection(props) {
56615
56877
  borderTop: sectionproperties.sectioncardborderwidth + 'px solid ' + sectionproperties.sectioncardbordercolor,
56616
56878
  position: 'relative'
56617
56879
  }
56618
- }, sectionproperties.maincontainerarrayofobjs != undefined && sectionproperties.maincontainerarrayofobjs.length != 0 && /*#__PURE__*/React__default["default"].createElement("div", {
56619
- "class": section_styles.imgcontainer
56620
- }, /*#__PURE__*/React__default["default"].createElement(Imagekitimagecomp, {
56621
- urlEndpoint: ikimagecredcontext === null || ikimagecredcontext === void 0 ? void 0 : ikimagecredcontext.ikimageendpoint,
56622
- publicKey: ikimagecredcontext === null || ikimagecredcontext === void 0 ? void 0 : ikimagecredcontext.ikimagepublickey,
56623
- path: (_maincontainerarrayof = maincontainerarrayofobjs[0]) === null || _maincontainerarrayof === void 0 ? void 0 : _maincontainerarrayof.back_bgimage,
56624
- style: {
56625
- height: '100%',
56626
- width: '100%',
56627
- objectFit: 'cover',
56628
- margin: 0,
56629
- padding: 0,
56630
- position: 'absolute',
56631
- top: 0,
56632
- bottom: 0,
56633
- right: 0,
56634
- left: 0
56635
- }
56636
- })), /*#__PURE__*/React__default["default"].createElement("div", {
56637
- "class": "col-lg-12 px-1025-1 pl-md-3 pr-md-3 pr-sm-2 pl-sm-2",
56638
- style: {
56639
- zIndex: 1,
56640
- paddingLeft: sectionproperties.paddingLeft + 'px',
56641
- paddingRight: sectionproperties.paddingRight + 'px',
56642
- paddingTop: sectionproperties.paddingTop + 'px',
56643
- paddingBottom: sectionproperties.paddingBottom + 'px'
56644
- }
56645
- }, /*#__PURE__*/React__default["default"].createElement("div", {
56880
+ }, sectionproperties.showanimation == 'Yes' && /*#__PURE__*/React__default["default"].createElement("div", {
56881
+ "class": "row m-0 w-100",
56882
+ "data-aos": 'fade-up'
56883
+ }, CollapsibleSectionContent()), sectionproperties.showanimation != 'Yes' && /*#__PURE__*/React__default["default"].createElement("div", {
56646
56884
  "class": "row m-0 w-100"
56647
- }, sectionproperties.sectiontitleshow == 'Show' && sectionproperties.sectiontitlestyle == 'Line Under Text' && /*#__PURE__*/React__default["default"].createElement("div", {
56648
- "class": "col-lg-12 col-md-12 col-sm-12 d-flex align-items-center p-0",
56649
- style: {
56650
- justifyContent: sectionproperties.sectiontitleposition == 'Centered' ? 'center' : 'start'
56651
- }
56652
- }, /*#__PURE__*/React__default["default"].createElement("div", {
56653
- "class": "".concat(generalstyles.sectiontitlecont),
56654
- style: {
56655
- marginTop: sectionproperties.sectionTitleMarginTop + 'px',
56656
- marginBottom: sectionproperties.sectionTitleMarginBottom + 'px'
56657
- }
56658
- }, /*#__PURE__*/React__default["default"].createElement("span", {
56659
- "class": sectionproperties.sectiontitlefontfamily == 'Pacifico' ? "".concat(section_styles.sectiontitlespan) + ' PacificoFont mb-0 pb-0 wordbreak ' : sectionproperties.sectiontitlefontfamily == 'Playfair' ? "".concat(section_styles.sectiontitlespan) + ' PlayfairFont mb-0 pb-0 wordbreak ' : sectionproperties.sectiontitlefontfamily == 'Great Vibes' ? "".concat(section_styles.sectiontitlespan) + ' GreatvibesFont mb-0 pb-0 wordbreak ' : sectionproperties.sectiontitlefontfamily == 'Quicksand' ? "".concat(section_styles.sectiontitlespan) + ' QuicksandFont mb-0 pb-0 wordbreak ' : sectionproperties.sectiontitlefontfamily == 'Satisfy' ? "".concat(section_styles.sectiontitlespan) + ' SatisfyFont mb-0 pb-0 wordbreak ' : "".concat(section_styles.sectiontitlespan) + ' mb-0 pb-0 wordbreak ',
56660
- style: {
56661
- color: sectionproperties.sectionTitleColor,
56662
- fontSize: sectionproperties.sectionTitleFontSize + 'px',
56663
- textTransform: sectionproperties.sectionTitleTextTransform,
56664
- fontWeight: sectionproperties.sectionTitleFontWeight,
56665
- textAlign: langdetect == 'en' ? 'left' : 'right'
56666
- }
56667
- }, langdetect == 'en' ? sectionproperties.sectionTitleContent : sectionproperties.sectionTitleContent_ar))), sectionproperties.sectiontitleshow == 'Show' && sectionproperties.sectiontitlestyle == 'Line Before Text' && /*#__PURE__*/React__default["default"].createElement("div", {
56668
- "class": "col-lg-12 col-md-12 col-sm-12 d-flex align-items-center p-0",
56669
- style: {
56670
- justifyContent: sectionproperties.sectiontitleposition == 'Centered' ? 'center' : 'start'
56671
- }
56672
- }, /*#__PURE__*/React__default["default"].createElement("div", {
56673
- "class": "".concat(generalstyles.sectiontitlecont2),
56674
- style: {
56675
- marginTop: sectionproperties.sectionTitleMarginTop + 'px',
56676
- marginBottom: sectionproperties.sectionTitleMarginBottom + 'px'
56677
- }
56678
- }, /*#__PURE__*/React__default["default"].createElement("span", {
56679
- "class": "".concat(section_styles.sectiontitlespan2),
56680
- style: {
56681
- color: sectionproperties.sectionTitleColor,
56682
- fontSize: sectionproperties.sectionTitleFontSize + 'px',
56683
- textTransform: sectionproperties.sectionTitleTextTransform,
56684
- fontWeight: sectionproperties.sectionTitleFontWeight
56685
- }
56686
- }, langdetect == 'en' ? sectionproperties.sectionTitleContent : sectionproperties.sectionTitleContent_ar))), sectionproperties.prodCatShow == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
56687
- "class": ' col-lg-12 col-md-12 col-sm-12 d-flex d-md-none align-items-center p-0 ',
56688
- style: {
56689
- justifyContent: sectionproperties.descriptionCentered == 'Centered' ? 'center' : 'start',
56690
- marginBottom: sectionproperties.descriptionMarginBottom + 'px',
56691
- paddingLeft: langdetect == 'en' ? sectionproperties.description_marginLeft + 'px' : sectionproperties.description_marginRight + 'px',
56692
- paddingRight: langdetect == 'en' ? sectionproperties.description_marginRight + 'px' : sectionproperties.description_marginLeft + 'px',
56693
- fontSize: sectionproperties.prodCatFontSize + 'px'
56694
- }
56695
- }, DescriptionContent()), sectionproperties.prodCatShow == 'Show' && /*#__PURE__*/React__default["default"].createElement("div", {
56696
- "class": ' col-lg-12 col-md-12 col-sm-12 d-none d-md-flex align-items-center p-0 ',
56697
- style: {
56698
- justifyContent: sectionproperties.descriptionCentered == 'Centered' ? 'center' : 'start',
56699
- marginBottom: sectionproperties.descriptionMarginBottom + 'px',
56700
- paddingLeft: langdetect == 'en' ? sectionproperties.description_marginLeft + 'px' : sectionproperties.description_marginRight + 'px',
56701
- paddingRight: langdetect == 'en' ? sectionproperties.description_marginRight + 'px' : sectionproperties.description_marginLeft + 'px',
56702
- fontSize: sectionproperties.prodCatFontSizeResp + 'px'
56703
- }
56704
- }, DescriptionContent()), /*#__PURE__*/React__default["default"].createElement("div", {
56705
- "class": "row m-0 w-100 d-flex justify-content-center justify-content-md-start"
56706
- }, cardsarray.map(function (cardinfoitem, cardinfoindex) {
56707
- return /*#__PURE__*/React__default["default"].createElement("div", {
56708
- className: section_styles.accordion + ' mb-3 '
56709
- }, /*#__PURE__*/React__default["default"].createElement(reactAccessibleAccordion.Accordion, {
56710
- allowMultipleExpanded: true,
56711
- allowZeroExpanded: true,
56712
- "class": 'accordionnobefore'
56713
- }, /*#__PURE__*/React__default["default"].createElement(reactAccessibleAccordion.AccordionItem, null, /*#__PURE__*/React__default["default"].createElement(reactAccessibleAccordion.AccordionItemHeading, {
56714
- "class": section_styles.accordionheading
56715
- }, /*#__PURE__*/React__default["default"].createElement(reactAccessibleAccordion.AccordionItemButton, {
56716
- "class": section_styles.accordionbutton
56717
- }, /*#__PURE__*/React__default["default"].createElement("div", {
56718
- "class": "row m-0 w-100"
56719
- }, /*#__PURE__*/React__default["default"].createElement("div", {
56720
- "class": "col-lg-8 col-md-8 col-sm-8 p-0 d-flex align-items-center justify-content-start"
56721
- }, /*#__PURE__*/React__default["default"].createElement("p", {
56722
- "class": sectionproperties.slideshowtext2_show == 'Show' ? section_styles.text1 + ' pname p-0 m-0 wordbreak ' : section_styles.text1 + ' pname p-0 m-0 wordbreak mt-auto mb-auto '
56723
- }, langdetect == 'en' ? cardsarray[cardinfoindex].cardobj_titleen : cardsarray[cardinfoindex].cardobj_titlear)), /*#__PURE__*/React__default["default"].createElement("div", {
56724
- "class": "col-lg-4 col-md-4 col-sm-4 p-0 d-flex align-items-center justify-content-end"
56725
- }, /*#__PURE__*/React__default["default"].createElement(reactAccessibleAccordion.AccordionItemState, null, function (state) {
56726
- if (state.expanded == true) {
56727
- return /*#__PURE__*/React__default["default"].createElement("i", {
56728
- className: section_styles.accordionicon + ' d-flex align-items-center justify-content-center '
56729
- }, /*#__PURE__*/React__default["default"].createElement(AiOutlineMinus.AiOutlineMinus, null));
56730
- } else {
56731
- return /*#__PURE__*/React__default["default"].createElement("i", {
56732
- className: section_styles.accordionicon + ' d-flex align-items-center justify-content-center '
56733
- }, /*#__PURE__*/React__default["default"].createElement(HiOutlinePlus.HiOutlinePlus, null));
56734
- }
56735
- }))))), /*#__PURE__*/React__default["default"].createElement(reactAccessibleAccordion.AccordionItemPanel, null, /*#__PURE__*/React__default["default"].createElement("hr", {
56736
- className: "mt-2 mb-3"
56737
- }), /*#__PURE__*/React__default["default"].createElement("div", {
56738
- className: ' row p-0 w-100 mb-3 m-auto '
56739
- }, sectionproperties.slideshowtext2_show == 'Show' && /*#__PURE__*/React__default["default"].createElement("p", {
56740
- "class": "m-0 wordbreak ",
56741
- style: {
56742
- color: sectionproperties.slideshowText2ContentColor,
56743
- fontSize: sectionproperties.slideshowText2ContentFontSize + 'px',
56744
- fontWeight: sectionproperties.slideshowText2ContentFontWeight,
56745
- textTransform: sectionproperties.slideshowText2ContentTextTransform,
56746
- textAlign: langdetect == 'en' ? 'left' : 'right'
56747
- }
56748
- }, langdetect == 'en' ? cardsarray[cardinfoindex].cardobj_descripen : cardsarray[cardinfoindex].cardobj_descripar))))));
56749
- })))));
56885
+ }, CollapsibleSectionContent()));
56750
56886
  };
56751
56887
 
56752
56888
  function ownKeys$1j(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }