@dreamcommerce/aurora 2.27.19-3 → 2.27.19-5

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.
@@ -94,8 +94,6 @@ var Gallery = /*#__PURE__*/function () {
94
94
 
95
95
  _rollupPluginBabelHelpers.defineProperty(this, "mouseUpTarget", void 0);
96
96
 
97
- _rollupPluginBabelHelpers.defineProperty(this, "$triggerElement", void 0);
98
-
99
97
  _rollupPluginBabelHelpers.defineProperty(this, "transform", 0);
100
98
 
101
99
  _rollupPluginBabelHelpers.defineProperty(this, "partialTransform", 0);
@@ -149,13 +147,11 @@ var Gallery = /*#__PURE__*/function () {
149
147
  return;
150
148
  }
151
149
 
152
- _this.imageMarkups[index] = _this._createImageMarkup(index, _this.imageAttributes[index].source);
150
+ _this.imageMarkups[index] = _this._createImageMarkup(index, _this.imageAttributes[index].source, _this.imageAttributes[index].alt);
153
151
  });
154
152
  });
155
153
 
156
154
  _rollupPluginBabelHelpers.defineProperty(this, "remove", function (ev) {
157
- var _this$$triggerElement;
158
-
159
155
  document.body.style.overflow = 'auto';
160
156
  document.body.style.position = '';
161
157
  window.removeEventListener('resize', _this.updatePreviewImage);
@@ -191,8 +187,6 @@ var Gallery = /*#__PURE__*/function () {
191
187
  _this.removeInertFromBodyChildrenElements();
192
188
 
193
189
  _this._disableTabLoop();
194
-
195
- (_this$$triggerElement = _this.$triggerElement) === null || _this$$triggerElement === void 0 || _this$$triggerElement.focus();
196
190
  });
197
191
 
198
192
  _rollupPluginBabelHelpers.defineProperty(this, "_addInertToBodyChildrenElements", function () {
@@ -623,7 +617,7 @@ var Gallery = /*#__PURE__*/function () {
623
617
  });
624
618
  imageRange.forEach(function (index) {
625
619
  if (_this.imageMarkups[index] === null) {
626
- _this.imageMarkups[index] = _this._createImageMarkup(index, _this.imageAttributes[index].source);
620
+ _this.imageMarkups[index] = _this._createImageMarkup(index, _this.imageAttributes[index].source, _this.imageAttributes[0].alt);
627
621
  }
628
622
  });
629
623
 
@@ -736,11 +730,11 @@ var Gallery = /*#__PURE__*/function () {
736
730
  if (_this.selectedImageNumber === _this.imagesCount && !_this.hasUserGoneToNextImage || _this.popstateUpdate && _this.selectedImageNumber !== 1) {
737
731
  _this.$images.classList.remove(main_module['default'][css_classes.cssGalleryImagesWithTransition]);
738
732
 
739
- var createdImageIndex = _this.createdImagesIndex.findIndex(function (index) {
733
+ var _createdImageIndex2 = _this.createdImagesIndex.findIndex(function (index) {
740
734
  return index === _this.selectedImageNumber - 1;
741
735
  });
742
736
 
743
- _this.transform = -100 * (createdImageIndex + 1) + _this.partialTransform % 100;
737
+ _this.transform = -100 * (_createdImageIndex2 + 1) + _this.partialTransform % 100;
744
738
  _this.$images.style.transform = "translateX(".concat(_this.transform, "%)");
745
739
  var $lastTemporaryContainer = document.querySelector(_this.selectors.lastTemporaryContainer);
746
740
  $lastTemporaryContainer.remove();
@@ -754,15 +748,15 @@ var Gallery = /*#__PURE__*/function () {
754
748
  }
755
749
 
756
750
  if (_this.isMaxImageMode()) {
757
- var _createdImageIndex2 = _this.createdImagesIndex.findIndex(function (index) {
751
+ var _createdImageIndex3 = _this.createdImagesIndex.findIndex(function (index) {
758
752
  return index === _this.selectedImageNumber - 1;
759
753
  });
760
754
 
761
- var $images = document.querySelectorAll(_this.selectors.image);
755
+ var _$images = document.querySelectorAll(_this.selectors.image);
762
756
 
763
- var $container = $images[_createdImageIndex2].closest(_this.selectors.imageContainer);
757
+ var _$container = _$images[_createdImageIndex3].closest(_this.selectors.imageContainer);
764
758
 
765
- var containerHeight = $container.offsetHeight;
759
+ var containerHeight = _$container.offsetHeight;
766
760
  var _this$imageAttributes7 = _this.imageAttributes[_this.previouslySelectedImageIndex],
767
761
  maxImageHeight = _this$imageAttributes7.maxImageHeight,
768
762
  maxImageWidth = _this$imageAttributes7.maxImageWidth;
@@ -775,14 +769,21 @@ var Gallery = /*#__PURE__*/function () {
775
769
  return index === _this.previouslySelectedImageIndex;
776
770
  });
777
771
 
778
- if ((_$images$0$closest = $images[0].closest(_this.selectors.imageContainer)) !== null && _$images$0$closest !== void 0 && _$images$0$closest.classList.contains(constants.JS_CLASSES.lastTemporaryContainer)) {
772
+ if ((_$images$0$closest = _$images[0].closest(_this.selectors.imageContainer)) !== null && _$images$0$closest !== void 0 && _$images$0$closest.classList.contains(constants.JS_CLASSES.lastTemporaryContainer)) {
779
773
  previousCreatedImageIndex += 1;
780
774
  }
781
775
 
782
- _this.centerImage($images[previousCreatedImageIndex]);
776
+ _this.centerImage(_$images[previousCreatedImageIndex]);
783
777
  }
784
778
  }
785
779
 
780
+ var createdImageIndex = _this.createdImagesIndex.findIndex(function (index) {
781
+ return index === _this.selectedImageNumber - 1;
782
+ });
783
+
784
+ var $images = document.querySelectorAll(_this.selectors.image);
785
+ var $container = $images[createdImageIndex].closest(_this.selectors.imageContainer);
786
+ $container.setAttribute('aria-label', $images[createdImageIndex].alt);
786
787
  _this.isAnimating = false;
787
788
  });
788
789
 
@@ -1002,7 +1003,6 @@ var Gallery = /*#__PURE__*/function () {
1002
1003
 
1003
1004
  this.$images.style.transform = "translateX(".concat(this.transform, "%)");
1004
1005
  this.addListeners();
1005
- this.$triggerElement = document.activeElement;
1006
1006
 
1007
1007
  if (this.options.handleHistory) {
1008
1008
  handle_history.handleHistory(this.$gallery, this.options.name, this.selectedImageNumber, this.remove, this.showImage);
@@ -1015,8 +1015,6 @@ var Gallery = /*#__PURE__*/function () {
1015
1015
  this._addInertToBodyChildrenElements();
1016
1016
 
1017
1017
  this._enableTabLoop();
1018
-
1019
- utilities.UiDomUtils.setFocusToFirstFocusableElementInContainer(this.$gallery);
1020
1018
  }
1021
1019
 
1022
1020
  return _rollupPluginBabelHelpers.createClass(Gallery, [{
@@ -1032,6 +1030,7 @@ var Gallery = /*#__PURE__*/function () {
1032
1030
 
1033
1031
  _this2.imageAttributes.push({
1034
1032
  source: $anchor.href,
1033
+ alt: $image.alt,
1035
1034
  id: $image.getAttribute('data-id') || '',
1036
1035
  description: imageDescription,
1037
1036
  maxImageWidth: 0,
@@ -1068,9 +1067,6 @@ var Gallery = /*#__PURE__*/function () {
1068
1067
 
1069
1068
  this.$gallery.classList.add(main_module['default'][css_classes.cssGallery]);
1070
1069
  this.$gallery.classList.add(constants.JS_CLASSES.newGallery);
1071
- this.$gallery.setAttribute('role', 'dialog');
1072
- this.$gallery.setAttribute('aria-modal', 'true');
1073
- this.$gallery.setAttribute('aria-labelledby', 'gallery-label');
1074
1070
  var previousArrowMarkup = '';
1075
1071
  var nextArrowMarkup = '';
1076
1072
 
@@ -1096,7 +1092,7 @@ var Gallery = /*#__PURE__*/function () {
1096
1092
  var imagesNumberMarkup = '';
1097
1093
  var copyLinkMarkup = '';
1098
1094
  var ariaLabelCloseButton = this.options.translations.ariaLabelCloseButton;
1099
- var imageDescriptionMarkup = "\n <div class=\"".concat(main_module['default'][css_classes.cssGalleryBarImageDescription], " ").concat(constants.JS_CLASSES.imageDescription, "\" id=\"gallery-label\">\n </div>\n ");
1095
+ var imageDescriptionMarkup = "\n <div class=\"".concat(main_module['default'][css_classes.cssGalleryBarImageDescription], " ").concat(constants.JS_CLASSES.imageDescription, "\">\n </div>\n ");
1100
1096
 
1101
1097
  if (this.options.hasImageNumbers) {
1102
1098
  imagesNumberMarkup = this._createImageNumbersMarkup();
@@ -1121,7 +1117,7 @@ var Gallery = /*#__PURE__*/function () {
1121
1117
  picture = _this$options$transla.picture,
1122
1118
  copyLinkShortVersion = _this$options$transla.copyLinkShortVersion,
1123
1119
  copyLinkConfirmation = _this$options$transla.copyLinkConfirmation;
1124
- return "\n <button class=\"".concat(main_module['default'][css_classes.cssGalleryBarCopyLink], " ").concat(constants.JS_CLASSES.copyLinkButton, "\">\n <span class=\"").concat(main_module['default'][css_classes.cssIcon], " ").concat(main_module['default'][css_classes.cssIconLink], " ").concat(main_module['default'][css_classes.cssHideMobile], "\" aria-hidden=\"true\"></span>\n <span class=\"").concat(main_module['default'][css_classes.cssHideDesktop], "\">").concat(copyLinkShortVersion, "</span>\n <span class=\"").concat(main_module['default'][css_classes.cssHideMobile], "\">\n ").concat(copyLink, " (").concat(picture, " <span class=\"").concat(constants.JS_CLASSES.selectedImageNumber, "\">").concat(this.selectedImageNumber, "</span>)\n </span>\n \n <div class=\"").concat(main_module['default'][css_classes.cssHide], " ").concat(main_module['default'][css_classes.cssGalleryBarCopyLinkConfirmation], "\">\n <span class=\"").concat(main_module['default'][css_classes.cssIcon], " ").concat(main_module['default'][css_classes.cssIconSuccess], "\"></span>\n\n <div class=\"").concat(main_module['default'][css_classes.cssGalleryBarCopyLinkConfirmationText], "\">\n ").concat(copyLinkConfirmation, "\n </div>\n </div>\n </button>\n ");
1120
+ return "\n <div class=\"".concat(main_module['default'][css_classes.cssGalleryBarCopyLink], " ").concat(constants.JS_CLASSES.copyLinkButton, "\">\n <span class=\"").concat(main_module['default'][css_classes.cssIcon], " ").concat(main_module['default'][css_classes.cssIconLink], " ").concat(main_module['default'][css_classes.cssHideMobile], "\"></span>\n <span class=\"").concat(main_module['default'][css_classes.cssHideDesktop], "\">").concat(copyLinkShortVersion, "</span>\n <span class=\"").concat(main_module['default'][css_classes.cssHideMobile], "\">\n ").concat(copyLink, " (").concat(picture, " <span class=\"").concat(constants.JS_CLASSES.selectedImageNumber, "\">").concat(this.selectedImageNumber, "</span>)\n </span>\n \n <div class=\"").concat(main_module['default'][css_classes.cssHide], " ").concat(main_module['default'][css_classes.cssGalleryBarCopyLinkConfirmation], "\">\n <span class=\"").concat(main_module['default'][css_classes.cssIcon], " ").concat(main_module['default'][css_classes.cssIconSuccess], "\"></span>\n\n <div class=\"").concat(main_module['default'][css_classes.cssGalleryBarCopyLinkConfirmationText], "\">\n ").concat(copyLinkConfirmation, "\n </div>\n </div>\n </div>\n ");
1125
1121
  }
1126
1122
  }, {
1127
1123
  key: "_createNavigationMarkup",
@@ -1155,7 +1151,7 @@ var Gallery = /*#__PURE__*/function () {
1155
1151
  }
1156
1152
  }, {
1157
1153
  key: "_createImageMarkup",
1158
- value: function _createImageMarkup(imageIndex, source) {
1154
+ value: function _createImageMarkup(imageIndex, source, alt) {
1159
1155
  var $imageContainer = document.createElement('div');
1160
1156
  $imageContainer.classList.add(main_module['default'][css_classes.cssGalleryImageContainer]);
1161
1157
  $imageContainer.style.overflow = 'hidden';
@@ -1176,6 +1172,7 @@ var Gallery = /*#__PURE__*/function () {
1176
1172
  $image.classList.add(main_module['default'][css_classes.cssHide]);
1177
1173
  $image.classList.add(constants.JS_CLASSES.image);
1178
1174
  $image.setAttribute('src', source);
1175
+ $image.setAttribute('alt', alt);
1179
1176
  $image.onload = this.hideLoader;
1180
1177
 
1181
1178
  if (maxHeightClass) {
@@ -1253,7 +1250,7 @@ var Gallery = /*#__PURE__*/function () {
1253
1250
  if (imageIndex === 0) {
1254
1251
  this.isLastTemporaryContainerExist = true;
1255
1252
 
1256
- var $temporaryMarkup = this._createImageMarkup(this.imagesCount - 1, this.imageAttributes[this.imagesCount - 1].source);
1253
+ var $temporaryMarkup = this._createImageMarkup(this.imagesCount - 1, this.imageAttributes[this.imagesCount - 1].source, this.imageAttributes[this.imagesCount - 1].alt);
1257
1254
 
1258
1255
  $temporaryMarkup.classList.add(constants.JS_CLASSES.lastTemporaryContainer);
1259
1256
  this.$images.prepend($temporaryMarkup);
@@ -1266,7 +1263,7 @@ var Gallery = /*#__PURE__*/function () {
1266
1263
  } else if (imageIndex === this.imagesCount - 1) {
1267
1264
  this.isFirstTemporaryContainerExist = true;
1268
1265
 
1269
- var _$temporaryMarkup = this._createImageMarkup(0, this.imageAttributes[0].source);
1266
+ var _$temporaryMarkup = this._createImageMarkup(0, this.imageAttributes[0].source, this.imageAttributes[0].alt);
1270
1267
 
1271
1268
  _$temporaryMarkup.classList.add(constants.JS_CLASSES.firstTemporaryContainer);
1272
1269
 
@@ -1295,13 +1292,13 @@ var Gallery = /*#__PURE__*/function () {
1295
1292
  var $previousButton = this.$gallery.querySelector(this.selectors.previous);
1296
1293
  $nextButton === null || $nextButton === void 0 || $nextButton.addEventListener('click', this.handleNextImagePreview);
1297
1294
  $previousButton === null || $previousButton === void 0 || $previousButton.addEventListener('click', this.handlePreviousImagePreview);
1298
- $nextButton === null || $nextButton === void 0 || $nextButton.addEventListener('keydown', function (ev) {
1299
- if (ev.key === 'Enter' || ev.key === ' ') {
1295
+ $nextButton.addEventListener('keydown', function (ev) {
1296
+ if (ev.key === 'Enter') {
1300
1297
  _this4.handleNextImagePreview();
1301
1298
  }
1302
1299
  });
1303
- $previousButton === null || $previousButton === void 0 || $previousButton.addEventListener('keydown', function (ev) {
1304
- if (ev.key === 'Enter' || ev.key === ' ') {
1300
+ $previousButton.addEventListener('keydown', function (ev) {
1301
+ if (ev.key === 'Enter') {
1305
1302
  _this4.handlePreviousImagePreview();
1306
1303
  }
1307
1304
  });
@@ -1 +1 @@
1
- {"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
1
+ {"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
@@ -4,7 +4,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  var styleInject_es = require('../../../../../external/style-inject/dist/style-inject.es.js');
6
6
 
7
- var css_248z = "@font-face {\n font-family: 'aurora-icons';\n font-display: swap;\n src: url(https://dcsaascdn.net/fonts/aurora-icons.svg) format('svg'), url(https://dcsaascdn.net/fonts/aurora-icons.ttf) format('truetype'), url(https://dcsaascdn.net/fonts/aurora-icons.woff) format('woff');\n font-weight: normal;\n font-style: normal;\n}\n.main-module_gallery__1Ajgx {\n position: fixed;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n z-index: 1000;\n box-sizing: border-box;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.main-module_gallery__image__1LYNa {\n margin: auto;\n display: block;\n max-width: -webkit-max-content;\n max-width: -moz-max-content;\n max-width: max-content;\n max-height: -webkit-max-content;\n max-height: -moz-max-content;\n max-height: max-content;\n}\n.main-module_gallery__image_max-width__2uWqp {\n width: 100%;\n height: auto;\n}\n.main-module_gallery__image_max-height__3iunQ {\n height: 100%;\n width: auto;\n}\n.main-module_gallery__image_adjusted__Ix20O {\n max-width: 100%;\n max-height: 100%;\n}\n.main-module_gallery__image_max-sizes__w2lwL {\n height: auto;\n width: auto;\n}\n.main-module_gallery__image-container__2uLDK {\n display: flex;\n overflow: auto;\n scroll-behavior: smooth;\n}\n.main-module_gallery__image-container__2uLDK::-webkit-scrollbar {\n width: 7px;\n height: 7px;\n}\n.main-module_gallery__image-container__2uLDK::-webkit-scrollbar-thumb {\n background-color: rgba(0, 0, 0, 0.4);\n}\n.main-module_gallery__images__19e1P {\n display: -ms-grid;\n display: grid;\n height: 100%;\n -ms-grid-rows: 1fr;\n grid-template-rows: 1fr;\n}\n.main-module_gallery__images-container__y3z5v {\n overflow: hidden;\n width: 100%;\n background-color: rgba(255, 255, 255, 0.9);\n}\n.main-module_gallery__images_with-transition__1cAJq {\n transition: transform 0.3s cubic-bezier(0.25, 0.25, 0.75, 1) 0s;\n}\n.main-module_gallery-bar__2jTh6 {\n height: 60px;\n display: -ms-grid;\n display: grid;\n -ms-grid-columns: -webkit-max-content 1fr (-webkit-max-content)[2];\n -ms-grid-columns: max-content 1fr (max-content)[2];\n grid-template-columns: -webkit-max-content 1fr repeat(2, -webkit-max-content);\n grid-template-columns: max-content 1fr repeat(2, max-content);\n grid-template-areas: 'imageNumbers description copyLink close';\n -ms-grid-rows: 1fr;\n grid-template-rows: 1fr;\n align-items: center;\n background-color: #242424;\n color: #ffffff;\n padding: 0 20px;\n position: relative;\n font-size: 13px;\n font-weight: bold;\n}\n.main-module_gallery-bar__2jTh6 *:focus {\n outline-color: #ffffff;\n outline-offset: 0;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon__2BB-1 {\n font-size: 16px;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon__2BB-1:hover {\n cursor: pointer;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon_inactive__2QRrA {\n color: #5c657e;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon_inactive__2QRrA:hover {\n cursor: default;\n}\n.main-module_gallery-bar__image-numbers__2gLMV {\n -ms-grid-row: 1;\n -ms-grid-column: 1;\n grid-area: imageNumbers;\n margin-right: 50px;\n}\n.main-module_gallery-bar__image-description__15_99 {\n -ms-grid-row: 1;\n -ms-grid-column: 2;\n grid-area: description;\n color: #d0e6ff;\n font-weight: normal;\n overflow-wrap: anywhere;\n display: none;\n}\n.main-module_gallery-bar__copy-link__25EN6 {\n -ms-grid-row: 1;\n -ms-grid-column: 3;\n grid-area: copyLink;\n display: flex;\n font-size: 12px;\n border: 2px solid #ffffff;\n border-radius: 3px;\n padding: 6px 10px;\n margin-left: 50px;\n color: #ffffff;\n font-size: 100%;\n font-weight: bold;\n}\n.main-module_gallery-bar__copy-link__25EN6:hover {\n cursor: pointer;\n}\n.main-module_gallery-bar__copy-link__25EN6 .main-module_icon__2BB-1 {\n margin-right: 11px;\n}\n.main-module_gallery-bar__copy-link__25EN6 .main-module_hide_desktop__3M7Iv {\n display: inline-block;\n}\n.main-module_gallery-bar__copy-link_confirmation__2Q0uN {\n position: absolute;\n top: 80px;\n left: 0;\n right: 0;\n margin: 0 auto;\n width: -webkit-max-content;\n width: -moz-max-content;\n width: max-content;\n min-width: 15rem;\n background-color: #d2eec4;\n z-index: 5;\n display: flex;\n align-items: center;\n max-width: 100%;\n padding: 1rem;\n border-radius: 3px;\n color: #5a9986;\n}\n.main-module_gallery-bar__copy-link_confirmation-text__14S1V {\n padding: 0 10px;\n text-align: center;\n min-width: 8rem;\n width: 100%;\n}\n.main-module_gallery-bar__image-close__3tyC0 {\n -ms-grid-row: 1;\n -ms-grid-column: 4;\n grid-area: close;\n -ms-grid-column-align: end;\n justify-self: end;\n margin-left: 30px;\n}\n.main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link__25EN6 .main-module_hide_mobile__37dVg {\n display: none;\n}\n.main-module_gallery__1Ajgx .main-module_loader__mask__2I5iM {\n background: #242424;\n display: flex;\n justify-content: center;\n align-items: center;\n width: 100%;\n}\n.main-module_gallery__1Ajgx .main-module_loader__mask__2I5iM::after {\n content: '';\n background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCI+CiAgICA8ZGVmcz4KICAgICAgICA8cGF0aCBpZD0iYSIgZD0iTTkuNDc0IDBIMTh2OS40NzRIOS40NzR6Ii8+CiAgICA8L2RlZnM+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNERUU0RjciIGQ9Ik05IDE4QTkgOSAwIDEgMSA5IDBhOSA5IDAgMCAxIDAgMTh6bTAtMi42NDNBNi4zNTcgNi4zNTcgMCAxIDAgOSAyLjY0M2E2LjM1NyA2LjM1NyAwIDAgMCAwIDEyLjcxNHoiLz4KICAgICAgICA8bWFzayBpZD0iYiIgZmlsbD0iI2ZmZiI+CiAgICAgICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI2EiLz4KICAgICAgICA8L21hc2s+CiAgICAgICAgPHBhdGggZmlsbD0iIzNDODNFQyIgZD0iTTkgMThBOSA5IDAgMSAxIDkgMGE5IDkgMCAwIDEgMCAxOHptMC0yLjY0M0E2LjM1NyA2LjM1NyAwIDEgMCA5IDIuNjQzYTYuMzU3IDYuMzU3IDAgMCAwIDAgMTIuNzE0eiIgbWFzaz0idXJsKCNiKSIvPgogICAgPC9nPgo8L3N2Zz4=') no-repeat;\n background-size: 30px 30px;\n display: block;\n width: 30px;\n height: 30px;\n -webkit-animation: main-module_rotate__yjo_3 2s linear infinite;\n animation: main-module_rotate__yjo_3 2s linear infinite;\n transform-origin: 50% 50%;\n}\n.main-module_gallery__1Ajgx .main-module_icon__2BB-1 {\n display: inline-block;\n font-family: 'aurora-icons';\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: inherit;\n text-decoration: none;\n position: relative;\n vertical-align: middle;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n.main-module_gallery__1Ajgx .main-module_icon__2BB-1::after {\n content: '';\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n}\n.main-module_gallery__1Ajgx .main-module_icon-close__1bvaY::before {\n content: '\\E90D';\n}\n.main-module_gallery__1Ajgx .main-module_icon-loader__2wviL::before {\n content: '\\E906';\n}\n.main-module_gallery__1Ajgx .main-module_icon-link__rVNQ8::before {\n content: '\\E973';\n}\n.main-module_gallery__1Ajgx .main-module_icon-success__1ltet::before {\n content: '\\E93D';\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow__2lOOE {\n position: relative;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n margin-top: -60px;\n font-size: 19px;\n color: #ffffff;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow__2lOOE::before {\n content: '\\E920';\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container__2jvGl {\n height: 100%;\n width: 52px;\n position: fixed;\n top: 60px;\n background-color: rgba(36, 36, 36, 0.3);\n z-index: 2;\n cursor: pointer;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container_previous__2y-vp {\n left: 0;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container_next__1gy5p {\n right: 0;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container__2jvGl:hover {\n background-color: rgba(36, 36, 36, 0.6);\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow_rotate-180__3tVhZ {\n transform: translate(-50%, -50%) rotate(180deg);\n}\n.main-module_gallery__1Ajgx .main-module_hide__2dq3c {\n display: none !important;\n}\n.main-module_gallery__1Ajgx .main-module_hide_mobile__37dVg {\n display: none;\n}\n.main-module_gallery__1Ajgx .main-module_zoom-in__2kYCX {\n cursor: zoom-in;\n}\n.main-module_gallery__1Ajgx .main-module_zoom-out__2DXiQ {\n cursor: zoom-out;\n}\n.main-module_gallery__1Ajgx .main-module_grabbing__2uCRI {\n cursor: -webkit-grabbing;\n cursor: grabbing;\n}\n.main-module_gallery_mobile__2NF8_ .main-module_gallery__images-container__y3z5v {\n background-color: #242424;\n}\n.main-module_gallery_mobile__2NF8_ .main-module_gallery__images_with-transition__1cAJq {\n transition: transform 0.3s cubic-bezier(0.25, 0.25, 0.25, 1) 0s;\n}\n@media screen and (min-width: 576px) {\n .main-module_gallery__1Ajgx .main-module_gallery-bar__image-description__15_99 {\n display: block;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link_confirmation__2Q0uN {\n min-width: 20rem;\n }\n}\n@media screen and (min-width: 576px) and (max-width: 820px) {\n .main-module_gallery-bar__2jTh6 {\n height: 80px;\n }\n .main-module_gallery-bar__copy-link_confirmation__2Q0uN {\n top: 100px;\n }\n .main-module_gallery__1Ajgx .main-module_icon-arrow-container__2jvGl {\n top: 80px;\n }\n}\n@media screen and (min-width: 820px) {\n .main-module_gallery__1Ajgx .main-module_hide_mobile__37dVg {\n display: block;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__image-close__3tyC0 {\n margin-left: 50px;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link__25EN6 .main-module_hide_mobile__37dVg {\n display: block;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link__25EN6 .main-module_hide_desktop__3M7Iv {\n display: none;\n }\n}\n@-webkit-keyframes main-module_rotate__yjo_3 {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n}\n@keyframes main-module_rotate__yjo_3 {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n}\n";
7
+ var css_248z = "@font-face {\n font-family: 'aurora-icons';\n font-display: swap;\n src: url(https://dcsaascdn.net/fonts/aurora-icons.svg) format('svg'), url(https://dcsaascdn.net/fonts/aurora-icons.ttf) format('truetype'), url(https://dcsaascdn.net/fonts/aurora-icons.woff) format('woff');\n font-weight: normal;\n font-style: normal;\n}\n.main-module_gallery__1Ajgx {\n position: fixed;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n z-index: 1000;\n box-sizing: border-box;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.main-module_gallery__image__1LYNa {\n margin: auto;\n display: block;\n max-width: -webkit-max-content;\n max-width: -moz-max-content;\n max-width: max-content;\n max-height: -webkit-max-content;\n max-height: -moz-max-content;\n max-height: max-content;\n}\n.main-module_gallery__image_max-width__2uWqp {\n width: 100%;\n height: auto;\n}\n.main-module_gallery__image_max-height__3iunQ {\n height: 100%;\n width: auto;\n}\n.main-module_gallery__image_adjusted__Ix20O {\n max-width: 100%;\n max-height: 100%;\n}\n.main-module_gallery__image_max-sizes__w2lwL {\n height: auto;\n width: auto;\n}\n.main-module_gallery__image-container__2uLDK {\n display: flex;\n overflow: auto;\n scroll-behavior: smooth;\n}\n.main-module_gallery__image-container__2uLDK::-webkit-scrollbar {\n width: 7px;\n height: 7px;\n}\n.main-module_gallery__image-container__2uLDK::-webkit-scrollbar-thumb {\n background-color: rgba(0, 0, 0, 0.4);\n}\n.main-module_gallery__images__19e1P {\n display: -ms-grid;\n display: grid;\n height: 100%;\n -ms-grid-rows: 1fr;\n grid-template-rows: 1fr;\n}\n.main-module_gallery__images-container__y3z5v {\n overflow: hidden;\n width: 100%;\n background-color: rgba(255, 255, 255, 0.9);\n}\n.main-module_gallery__images_with-transition__1cAJq {\n transition: transform 0.3s cubic-bezier(0.25, 0.25, 0.75, 1) 0s;\n}\n.main-module_gallery-bar__2jTh6 {\n height: 60px;\n display: -ms-grid;\n display: grid;\n -ms-grid-columns: -webkit-max-content 1fr (-webkit-max-content)[2];\n -ms-grid-columns: max-content 1fr (max-content)[2];\n grid-template-columns: -webkit-max-content 1fr repeat(2, -webkit-max-content);\n grid-template-columns: max-content 1fr repeat(2, max-content);\n grid-template-areas: 'imageNumbers description copyLink close';\n -ms-grid-rows: 1fr;\n grid-template-rows: 1fr;\n align-items: center;\n background-color: #242424;\n color: #ffffff;\n padding: 0 20px;\n position: relative;\n font-size: 13px;\n font-weight: bold;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon__2BB-1 {\n font-size: 16px;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon__2BB-1:hover {\n cursor: pointer;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon_inactive__2QRrA {\n color: #5c657e;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon_inactive__2QRrA:hover {\n cursor: default;\n}\n.main-module_gallery-bar__image-numbers__2gLMV {\n -ms-grid-row: 1;\n -ms-grid-column: 1;\n grid-area: imageNumbers;\n margin-right: 50px;\n}\n.main-module_gallery-bar__image-description__15_99 {\n -ms-grid-row: 1;\n -ms-grid-column: 2;\n grid-area: description;\n color: #d0e6ff;\n font-weight: normal;\n overflow-wrap: anywhere;\n display: none;\n}\n.main-module_gallery-bar__copy-link__25EN6 {\n -ms-grid-row: 1;\n -ms-grid-column: 3;\n grid-area: copyLink;\n display: flex;\n font-size: 12px;\n border: 2px solid #ffffff;\n border-radius: 3px;\n padding: 6px 10px;\n margin-left: 50px;\n}\n.main-module_gallery-bar__copy-link__25EN6:hover {\n cursor: pointer;\n}\n.main-module_gallery-bar__copy-link__25EN6 .main-module_icon__2BB-1 {\n margin-right: 11px;\n}\n.main-module_gallery-bar__copy-link__25EN6 .main-module_hide_desktop__3M7Iv {\n display: inline-block;\n}\n.main-module_gallery-bar__copy-link_confirmation__2Q0uN {\n position: absolute;\n top: 80px;\n left: 0;\n right: 0;\n margin: 0 auto;\n width: -webkit-max-content;\n width: -moz-max-content;\n width: max-content;\n min-width: 15rem;\n background-color: #d2eec4;\n z-index: 5;\n display: flex;\n align-items: center;\n max-width: 100%;\n padding: 1rem;\n border-radius: 3px;\n color: #5a9986;\n}\n.main-module_gallery-bar__copy-link_confirmation-text__14S1V {\n padding: 0 10px;\n text-align: center;\n min-width: 8rem;\n width: 100%;\n}\n.main-module_gallery-bar__image-close__3tyC0 {\n -ms-grid-row: 1;\n -ms-grid-column: 4;\n grid-area: close;\n -ms-grid-column-align: end;\n justify-self: end;\n margin-left: 30px;\n}\n.main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link__25EN6 .main-module_hide_mobile__37dVg {\n display: none;\n}\n.main-module_gallery__1Ajgx .main-module_loader__mask__2I5iM {\n background: #242424;\n display: flex;\n justify-content: center;\n align-items: center;\n width: 100%;\n}\n.main-module_gallery__1Ajgx .main-module_loader__mask__2I5iM::after {\n content: '';\n background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCI+CiAgICA8ZGVmcz4KICAgICAgICA8cGF0aCBpZD0iYSIgZD0iTTkuNDc0IDBIMTh2OS40NzRIOS40NzR6Ii8+CiAgICA8L2RlZnM+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNERUU0RjciIGQ9Ik05IDE4QTkgOSAwIDEgMSA5IDBhOSA5IDAgMCAxIDAgMTh6bTAtMi42NDNBNi4zNTcgNi4zNTcgMCAxIDAgOSAyLjY0M2E2LjM1NyA2LjM1NyAwIDAgMCAwIDEyLjcxNHoiLz4KICAgICAgICA8bWFzayBpZD0iYiIgZmlsbD0iI2ZmZiI+CiAgICAgICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI2EiLz4KICAgICAgICA8L21hc2s+CiAgICAgICAgPHBhdGggZmlsbD0iIzNDODNFQyIgZD0iTTkgMThBOSA5IDAgMSAxIDkgMGE5IDkgMCAwIDEgMCAxOHptMC0yLjY0M0E2LjM1NyA2LjM1NyAwIDEgMCA5IDIuNjQzYTYuMzU3IDYuMzU3IDAgMCAwIDAgMTIuNzE0eiIgbWFzaz0idXJsKCNiKSIvPgogICAgPC9nPgo8L3N2Zz4=') no-repeat;\n background-size: 30px 30px;\n display: block;\n width: 30px;\n height: 30px;\n -webkit-animation: main-module_rotate__yjo_3 2s linear infinite;\n animation: main-module_rotate__yjo_3 2s linear infinite;\n transform-origin: 50% 50%;\n}\n.main-module_gallery__1Ajgx .main-module_icon__2BB-1 {\n display: inline-block;\n font-family: 'aurora-icons';\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: inherit;\n text-decoration: none;\n position: relative;\n vertical-align: middle;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n.main-module_gallery__1Ajgx .main-module_icon__2BB-1::after {\n content: '';\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n}\n.main-module_gallery__1Ajgx .main-module_icon-close__1bvaY::before {\n content: '\\E90D';\n}\n.main-module_gallery__1Ajgx .main-module_icon-loader__2wviL::before {\n content: '\\E906';\n}\n.main-module_gallery__1Ajgx .main-module_icon-link__rVNQ8::before {\n content: '\\E973';\n}\n.main-module_gallery__1Ajgx .main-module_icon-success__1ltet::before {\n content: '\\E93D';\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow__2lOOE {\n position: relative;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n margin-top: -60px;\n font-size: 19px;\n color: #ffffff;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow__2lOOE::before {\n content: '\\E920';\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container__2jvGl {\n height: 100%;\n width: 52px;\n position: fixed;\n top: 60px;\n background-color: rgba(36, 36, 36, 0.3);\n z-index: 2;\n cursor: pointer;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container_previous__2y-vp {\n left: 0;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container_next__1gy5p {\n right: 0;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container__2jvGl:hover {\n background-color: rgba(36, 36, 36, 0.6);\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow_rotate-180__3tVhZ {\n transform: translate(-50%, -50%) rotate(180deg);\n}\n.main-module_gallery__1Ajgx .main-module_hide__2dq3c {\n display: none !important;\n}\n.main-module_gallery__1Ajgx .main-module_hide_mobile__37dVg {\n display: none;\n}\n.main-module_gallery__1Ajgx .main-module_zoom-in__2kYCX {\n cursor: zoom-in;\n}\n.main-module_gallery__1Ajgx .main-module_zoom-out__2DXiQ {\n cursor: zoom-out;\n}\n.main-module_gallery__1Ajgx .main-module_grabbing__2uCRI {\n cursor: -webkit-grabbing;\n cursor: grabbing;\n}\n.main-module_gallery_mobile__2NF8_ .main-module_gallery__images-container__y3z5v {\n background-color: #242424;\n}\n.main-module_gallery_mobile__2NF8_ .main-module_gallery__images_with-transition__1cAJq {\n transition: transform 0.3s cubic-bezier(0.25, 0.25, 0.25, 1) 0s;\n}\n@media screen and (min-width: 576px) {\n .main-module_gallery__1Ajgx .main-module_gallery-bar__image-description__15_99 {\n display: block;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link_confirmation__2Q0uN {\n min-width: 20rem;\n }\n}\n@media screen and (min-width: 576px) and (max-width: 820px) {\n .main-module_gallery-bar__2jTh6 {\n height: 80px;\n }\n .main-module_gallery-bar__copy-link_confirmation__2Q0uN {\n top: 100px;\n }\n .main-module_gallery__1Ajgx .main-module_icon-arrow-container__2jvGl {\n top: 80px;\n }\n}\n@media screen and (min-width: 820px) {\n .main-module_gallery__1Ajgx .main-module_hide_mobile__37dVg {\n display: block;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__image-close__3tyC0 {\n margin-left: 50px;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link__25EN6 .main-module_hide_mobile__37dVg {\n display: block;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link__25EN6 .main-module_hide_desktop__3M7Iv {\n display: none;\n }\n}\n@-webkit-keyframes main-module_rotate__yjo_3 {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n}\n@keyframes main-module_rotate__yjo_3 {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n}\n";
8
8
  var cssClasses = {
9
9
  "gallery": "main-module_gallery__1Ajgx",
10
10
  "gallery__image": "main-module_gallery__image__1LYNa",
@@ -34,7 +34,6 @@ export default class Gallery implements IGallery {
34
34
  newImagesIndex: Array<number>;
35
35
  mouseDownTarget: HTMLElement;
36
36
  mouseUpTarget: HTMLElement;
37
- $triggerElement: HTMLElement | null;
38
37
  transform: number;
39
38
  partialTransform: number;
40
39
  isAnimating: boolean;
@@ -86,8 +86,6 @@ var Gallery = /*#__PURE__*/function () {
86
86
 
87
87
  _defineProperty(this, "mouseUpTarget", void 0);
88
88
 
89
- _defineProperty(this, "$triggerElement", void 0);
90
-
91
89
  _defineProperty(this, "transform", 0);
92
90
 
93
91
  _defineProperty(this, "partialTransform", 0);
@@ -141,13 +139,11 @@ var Gallery = /*#__PURE__*/function () {
141
139
  return;
142
140
  }
143
141
 
144
- _this.imageMarkups[index] = _this._createImageMarkup(index, _this.imageAttributes[index].source);
142
+ _this.imageMarkups[index] = _this._createImageMarkup(index, _this.imageAttributes[index].source, _this.imageAttributes[index].alt);
145
143
  });
146
144
  });
147
145
 
148
146
  _defineProperty(this, "remove", function (ev) {
149
- var _this$$triggerElement;
150
-
151
147
  document.body.style.overflow = 'auto';
152
148
  document.body.style.position = '';
153
149
  window.removeEventListener('resize', _this.updatePreviewImage);
@@ -183,8 +179,6 @@ var Gallery = /*#__PURE__*/function () {
183
179
  _this.removeInertFromBodyChildrenElements();
184
180
 
185
181
  _this._disableTabLoop();
186
-
187
- (_this$$triggerElement = _this.$triggerElement) === null || _this$$triggerElement === void 0 || _this$$triggerElement.focus();
188
182
  });
189
183
 
190
184
  _defineProperty(this, "_addInertToBodyChildrenElements", function () {
@@ -615,7 +609,7 @@ var Gallery = /*#__PURE__*/function () {
615
609
  });
616
610
  imageRange.forEach(function (index) {
617
611
  if (_this.imageMarkups[index] === null) {
618
- _this.imageMarkups[index] = _this._createImageMarkup(index, _this.imageAttributes[index].source);
612
+ _this.imageMarkups[index] = _this._createImageMarkup(index, _this.imageAttributes[index].source, _this.imageAttributes[0].alt);
619
613
  }
620
614
  });
621
615
 
@@ -728,11 +722,11 @@ var Gallery = /*#__PURE__*/function () {
728
722
  if (_this.selectedImageNumber === _this.imagesCount && !_this.hasUserGoneToNextImage || _this.popstateUpdate && _this.selectedImageNumber !== 1) {
729
723
  _this.$images.classList.remove(cssClasses[cssGalleryImagesWithTransition]);
730
724
 
731
- var createdImageIndex = _this.createdImagesIndex.findIndex(function (index) {
725
+ var _createdImageIndex2 = _this.createdImagesIndex.findIndex(function (index) {
732
726
  return index === _this.selectedImageNumber - 1;
733
727
  });
734
728
 
735
- _this.transform = -100 * (createdImageIndex + 1) + _this.partialTransform % 100;
729
+ _this.transform = -100 * (_createdImageIndex2 + 1) + _this.partialTransform % 100;
736
730
  _this.$images.style.transform = "translateX(".concat(_this.transform, "%)");
737
731
  var $lastTemporaryContainer = document.querySelector(_this.selectors.lastTemporaryContainer);
738
732
  $lastTemporaryContainer.remove();
@@ -746,15 +740,15 @@ var Gallery = /*#__PURE__*/function () {
746
740
  }
747
741
 
748
742
  if (_this.isMaxImageMode()) {
749
- var _createdImageIndex2 = _this.createdImagesIndex.findIndex(function (index) {
743
+ var _createdImageIndex3 = _this.createdImagesIndex.findIndex(function (index) {
750
744
  return index === _this.selectedImageNumber - 1;
751
745
  });
752
746
 
753
- var $images = document.querySelectorAll(_this.selectors.image);
747
+ var _$images = document.querySelectorAll(_this.selectors.image);
754
748
 
755
- var $container = $images[_createdImageIndex2].closest(_this.selectors.imageContainer);
749
+ var _$container = _$images[_createdImageIndex3].closest(_this.selectors.imageContainer);
756
750
 
757
- var containerHeight = $container.offsetHeight;
751
+ var containerHeight = _$container.offsetHeight;
758
752
  var _this$imageAttributes7 = _this.imageAttributes[_this.previouslySelectedImageIndex],
759
753
  maxImageHeight = _this$imageAttributes7.maxImageHeight,
760
754
  maxImageWidth = _this$imageAttributes7.maxImageWidth;
@@ -767,14 +761,21 @@ var Gallery = /*#__PURE__*/function () {
767
761
  return index === _this.previouslySelectedImageIndex;
768
762
  });
769
763
 
770
- if ((_$images$0$closest = $images[0].closest(_this.selectors.imageContainer)) !== null && _$images$0$closest !== void 0 && _$images$0$closest.classList.contains(JS_CLASSES.lastTemporaryContainer)) {
764
+ if ((_$images$0$closest = _$images[0].closest(_this.selectors.imageContainer)) !== null && _$images$0$closest !== void 0 && _$images$0$closest.classList.contains(JS_CLASSES.lastTemporaryContainer)) {
771
765
  previousCreatedImageIndex += 1;
772
766
  }
773
767
 
774
- _this.centerImage($images[previousCreatedImageIndex]);
768
+ _this.centerImage(_$images[previousCreatedImageIndex]);
775
769
  }
776
770
  }
777
771
 
772
+ var createdImageIndex = _this.createdImagesIndex.findIndex(function (index) {
773
+ return index === _this.selectedImageNumber - 1;
774
+ });
775
+
776
+ var $images = document.querySelectorAll(_this.selectors.image);
777
+ var $container = $images[createdImageIndex].closest(_this.selectors.imageContainer);
778
+ $container.setAttribute('aria-label', $images[createdImageIndex].alt);
778
779
  _this.isAnimating = false;
779
780
  });
780
781
 
@@ -994,7 +995,6 @@ var Gallery = /*#__PURE__*/function () {
994
995
 
995
996
  this.$images.style.transform = "translateX(".concat(this.transform, "%)");
996
997
  this.addListeners();
997
- this.$triggerElement = document.activeElement;
998
998
 
999
999
  if (this.options.handleHistory) {
1000
1000
  handleHistory(this.$gallery, this.options.name, this.selectedImageNumber, this.remove, this.showImage);
@@ -1007,8 +1007,6 @@ var Gallery = /*#__PURE__*/function () {
1007
1007
  this._addInertToBodyChildrenElements();
1008
1008
 
1009
1009
  this._enableTabLoop();
1010
-
1011
- UiDomUtils.setFocusToFirstFocusableElementInContainer(this.$gallery);
1012
1010
  }
1013
1011
 
1014
1012
  return _createClass(Gallery, [{
@@ -1024,6 +1022,7 @@ var Gallery = /*#__PURE__*/function () {
1024
1022
 
1025
1023
  _this2.imageAttributes.push({
1026
1024
  source: $anchor.href,
1025
+ alt: $image.alt,
1027
1026
  id: $image.getAttribute('data-id') || '',
1028
1027
  description: imageDescription,
1029
1028
  maxImageWidth: 0,
@@ -1060,9 +1059,6 @@ var Gallery = /*#__PURE__*/function () {
1060
1059
 
1061
1060
  this.$gallery.classList.add(cssClasses[cssGallery]);
1062
1061
  this.$gallery.classList.add(JS_CLASSES.newGallery);
1063
- this.$gallery.setAttribute('role', 'dialog');
1064
- this.$gallery.setAttribute('aria-modal', 'true');
1065
- this.$gallery.setAttribute('aria-labelledby', 'gallery-label');
1066
1062
  var previousArrowMarkup = '';
1067
1063
  var nextArrowMarkup = '';
1068
1064
 
@@ -1088,7 +1084,7 @@ var Gallery = /*#__PURE__*/function () {
1088
1084
  var imagesNumberMarkup = '';
1089
1085
  var copyLinkMarkup = '';
1090
1086
  var ariaLabelCloseButton = this.options.translations.ariaLabelCloseButton;
1091
- var imageDescriptionMarkup = "\n <div class=\"".concat(cssClasses[cssGalleryBarImageDescription], " ").concat(JS_CLASSES.imageDescription, "\" id=\"gallery-label\">\n </div>\n ");
1087
+ var imageDescriptionMarkup = "\n <div class=\"".concat(cssClasses[cssGalleryBarImageDescription], " ").concat(JS_CLASSES.imageDescription, "\">\n </div>\n ");
1092
1088
 
1093
1089
  if (this.options.hasImageNumbers) {
1094
1090
  imagesNumberMarkup = this._createImageNumbersMarkup();
@@ -1113,7 +1109,7 @@ var Gallery = /*#__PURE__*/function () {
1113
1109
  picture = _this$options$transla.picture,
1114
1110
  copyLinkShortVersion = _this$options$transla.copyLinkShortVersion,
1115
1111
  copyLinkConfirmation = _this$options$transla.copyLinkConfirmation;
1116
- return "\n <button class=\"".concat(cssClasses[cssGalleryBarCopyLink], " ").concat(JS_CLASSES.copyLinkButton, "\">\n <span class=\"").concat(cssClasses[cssIcon], " ").concat(cssClasses[cssIconLink], " ").concat(cssClasses[cssHideMobile], "\" aria-hidden=\"true\"></span>\n <span class=\"").concat(cssClasses[cssHideDesktop], "\">").concat(copyLinkShortVersion, "</span>\n <span class=\"").concat(cssClasses[cssHideMobile], "\">\n ").concat(copyLink, " (").concat(picture, " <span class=\"").concat(JS_CLASSES.selectedImageNumber, "\">").concat(this.selectedImageNumber, "</span>)\n </span>\n \n <div class=\"").concat(cssClasses[cssHide], " ").concat(cssClasses[cssGalleryBarCopyLinkConfirmation], "\">\n <span class=\"").concat(cssClasses[cssIcon], " ").concat(cssClasses[cssIconSuccess], "\"></span>\n\n <div class=\"").concat(cssClasses[cssGalleryBarCopyLinkConfirmationText], "\">\n ").concat(copyLinkConfirmation, "\n </div>\n </div>\n </button>\n ");
1112
+ return "\n <div class=\"".concat(cssClasses[cssGalleryBarCopyLink], " ").concat(JS_CLASSES.copyLinkButton, "\">\n <span class=\"").concat(cssClasses[cssIcon], " ").concat(cssClasses[cssIconLink], " ").concat(cssClasses[cssHideMobile], "\"></span>\n <span class=\"").concat(cssClasses[cssHideDesktop], "\">").concat(copyLinkShortVersion, "</span>\n <span class=\"").concat(cssClasses[cssHideMobile], "\">\n ").concat(copyLink, " (").concat(picture, " <span class=\"").concat(JS_CLASSES.selectedImageNumber, "\">").concat(this.selectedImageNumber, "</span>)\n </span>\n \n <div class=\"").concat(cssClasses[cssHide], " ").concat(cssClasses[cssGalleryBarCopyLinkConfirmation], "\">\n <span class=\"").concat(cssClasses[cssIcon], " ").concat(cssClasses[cssIconSuccess], "\"></span>\n\n <div class=\"").concat(cssClasses[cssGalleryBarCopyLinkConfirmationText], "\">\n ").concat(copyLinkConfirmation, "\n </div>\n </div>\n </div>\n ");
1117
1113
  }
1118
1114
  }, {
1119
1115
  key: "_createNavigationMarkup",
@@ -1147,7 +1143,7 @@ var Gallery = /*#__PURE__*/function () {
1147
1143
  }
1148
1144
  }, {
1149
1145
  key: "_createImageMarkup",
1150
- value: function _createImageMarkup(imageIndex, source) {
1146
+ value: function _createImageMarkup(imageIndex, source, alt) {
1151
1147
  var $imageContainer = document.createElement('div');
1152
1148
  $imageContainer.classList.add(cssClasses[cssGalleryImageContainer]);
1153
1149
  $imageContainer.style.overflow = 'hidden';
@@ -1168,6 +1164,7 @@ var Gallery = /*#__PURE__*/function () {
1168
1164
  $image.classList.add(cssClasses[cssHide]);
1169
1165
  $image.classList.add(JS_CLASSES.image);
1170
1166
  $image.setAttribute('src', source);
1167
+ $image.setAttribute('alt', alt);
1171
1168
  $image.onload = this.hideLoader;
1172
1169
 
1173
1170
  if (maxHeightClass) {
@@ -1245,7 +1242,7 @@ var Gallery = /*#__PURE__*/function () {
1245
1242
  if (imageIndex === 0) {
1246
1243
  this.isLastTemporaryContainerExist = true;
1247
1244
 
1248
- var $temporaryMarkup = this._createImageMarkup(this.imagesCount - 1, this.imageAttributes[this.imagesCount - 1].source);
1245
+ var $temporaryMarkup = this._createImageMarkup(this.imagesCount - 1, this.imageAttributes[this.imagesCount - 1].source, this.imageAttributes[this.imagesCount - 1].alt);
1249
1246
 
1250
1247
  $temporaryMarkup.classList.add(JS_CLASSES.lastTemporaryContainer);
1251
1248
  this.$images.prepend($temporaryMarkup);
@@ -1258,7 +1255,7 @@ var Gallery = /*#__PURE__*/function () {
1258
1255
  } else if (imageIndex === this.imagesCount - 1) {
1259
1256
  this.isFirstTemporaryContainerExist = true;
1260
1257
 
1261
- var _$temporaryMarkup = this._createImageMarkup(0, this.imageAttributes[0].source);
1258
+ var _$temporaryMarkup = this._createImageMarkup(0, this.imageAttributes[0].source, this.imageAttributes[0].alt);
1262
1259
 
1263
1260
  _$temporaryMarkup.classList.add(JS_CLASSES.firstTemporaryContainer);
1264
1261
 
@@ -1287,13 +1284,13 @@ var Gallery = /*#__PURE__*/function () {
1287
1284
  var $previousButton = this.$gallery.querySelector(this.selectors.previous);
1288
1285
  $nextButton === null || $nextButton === void 0 || $nextButton.addEventListener('click', this.handleNextImagePreview);
1289
1286
  $previousButton === null || $previousButton === void 0 || $previousButton.addEventListener('click', this.handlePreviousImagePreview);
1290
- $nextButton === null || $nextButton === void 0 || $nextButton.addEventListener('keydown', function (ev) {
1291
- if (ev.key === 'Enter' || ev.key === ' ') {
1287
+ $nextButton.addEventListener('keydown', function (ev) {
1288
+ if (ev.key === 'Enter') {
1292
1289
  _this4.handleNextImagePreview();
1293
1290
  }
1294
1291
  });
1295
- $previousButton === null || $previousButton === void 0 || $previousButton.addEventListener('keydown', function (ev) {
1296
- if (ev.key === 'Enter' || ev.key === ' ') {
1292
+ $previousButton.addEventListener('keydown', function (ev) {
1293
+ if (ev.key === 'Enter') {
1297
1294
  _this4.handlePreviousImagePreview();
1298
1295
  }
1299
1296
  });
@@ -1 +1 @@
1
- {"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
1
+ {"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
@@ -27,6 +27,7 @@ export interface IGalleryOptions {
27
27
  }
28
28
  export interface IImageAttributes {
29
29
  source: string;
30
+ alt: string;
30
31
  id: string;
31
32
  description: string;
32
33
  maxImageWidth: number;
@@ -1,6 +1,6 @@
1
1
  import styleInject from '../../../../../external/style-inject/dist/style-inject.es.js';
2
2
 
3
- var css_248z = "@font-face {\n font-family: 'aurora-icons';\n font-display: swap;\n src: url(https://dcsaascdn.net/fonts/aurora-icons.svg) format('svg'), url(https://dcsaascdn.net/fonts/aurora-icons.ttf) format('truetype'), url(https://dcsaascdn.net/fonts/aurora-icons.woff) format('woff');\n font-weight: normal;\n font-style: normal;\n}\n.main-module_gallery__1Ajgx {\n position: fixed;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n z-index: 1000;\n box-sizing: border-box;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.main-module_gallery__image__1LYNa {\n margin: auto;\n display: block;\n max-width: -webkit-max-content;\n max-width: -moz-max-content;\n max-width: max-content;\n max-height: -webkit-max-content;\n max-height: -moz-max-content;\n max-height: max-content;\n}\n.main-module_gallery__image_max-width__2uWqp {\n width: 100%;\n height: auto;\n}\n.main-module_gallery__image_max-height__3iunQ {\n height: 100%;\n width: auto;\n}\n.main-module_gallery__image_adjusted__Ix20O {\n max-width: 100%;\n max-height: 100%;\n}\n.main-module_gallery__image_max-sizes__w2lwL {\n height: auto;\n width: auto;\n}\n.main-module_gallery__image-container__2uLDK {\n display: flex;\n overflow: auto;\n scroll-behavior: smooth;\n}\n.main-module_gallery__image-container__2uLDK::-webkit-scrollbar {\n width: 7px;\n height: 7px;\n}\n.main-module_gallery__image-container__2uLDK::-webkit-scrollbar-thumb {\n background-color: rgba(0, 0, 0, 0.4);\n}\n.main-module_gallery__images__19e1P {\n display: -ms-grid;\n display: grid;\n height: 100%;\n -ms-grid-rows: 1fr;\n grid-template-rows: 1fr;\n}\n.main-module_gallery__images-container__y3z5v {\n overflow: hidden;\n width: 100%;\n background-color: rgba(255, 255, 255, 0.9);\n}\n.main-module_gallery__images_with-transition__1cAJq {\n transition: transform 0.3s cubic-bezier(0.25, 0.25, 0.75, 1) 0s;\n}\n.main-module_gallery-bar__2jTh6 {\n height: 60px;\n display: -ms-grid;\n display: grid;\n -ms-grid-columns: -webkit-max-content 1fr (-webkit-max-content)[2];\n -ms-grid-columns: max-content 1fr (max-content)[2];\n grid-template-columns: -webkit-max-content 1fr repeat(2, -webkit-max-content);\n grid-template-columns: max-content 1fr repeat(2, max-content);\n grid-template-areas: 'imageNumbers description copyLink close';\n -ms-grid-rows: 1fr;\n grid-template-rows: 1fr;\n align-items: center;\n background-color: #242424;\n color: #ffffff;\n padding: 0 20px;\n position: relative;\n font-size: 13px;\n font-weight: bold;\n}\n.main-module_gallery-bar__2jTh6 *:focus {\n outline-color: #ffffff;\n outline-offset: 0;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon__2BB-1 {\n font-size: 16px;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon__2BB-1:hover {\n cursor: pointer;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon_inactive__2QRrA {\n color: #5c657e;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon_inactive__2QRrA:hover {\n cursor: default;\n}\n.main-module_gallery-bar__image-numbers__2gLMV {\n -ms-grid-row: 1;\n -ms-grid-column: 1;\n grid-area: imageNumbers;\n margin-right: 50px;\n}\n.main-module_gallery-bar__image-description__15_99 {\n -ms-grid-row: 1;\n -ms-grid-column: 2;\n grid-area: description;\n color: #d0e6ff;\n font-weight: normal;\n overflow-wrap: anywhere;\n display: none;\n}\n.main-module_gallery-bar__copy-link__25EN6 {\n -ms-grid-row: 1;\n -ms-grid-column: 3;\n grid-area: copyLink;\n display: flex;\n font-size: 12px;\n border: 2px solid #ffffff;\n border-radius: 3px;\n padding: 6px 10px;\n margin-left: 50px;\n color: #ffffff;\n font-size: 100%;\n font-weight: bold;\n}\n.main-module_gallery-bar__copy-link__25EN6:hover {\n cursor: pointer;\n}\n.main-module_gallery-bar__copy-link__25EN6 .main-module_icon__2BB-1 {\n margin-right: 11px;\n}\n.main-module_gallery-bar__copy-link__25EN6 .main-module_hide_desktop__3M7Iv {\n display: inline-block;\n}\n.main-module_gallery-bar__copy-link_confirmation__2Q0uN {\n position: absolute;\n top: 80px;\n left: 0;\n right: 0;\n margin: 0 auto;\n width: -webkit-max-content;\n width: -moz-max-content;\n width: max-content;\n min-width: 15rem;\n background-color: #d2eec4;\n z-index: 5;\n display: flex;\n align-items: center;\n max-width: 100%;\n padding: 1rem;\n border-radius: 3px;\n color: #5a9986;\n}\n.main-module_gallery-bar__copy-link_confirmation-text__14S1V {\n padding: 0 10px;\n text-align: center;\n min-width: 8rem;\n width: 100%;\n}\n.main-module_gallery-bar__image-close__3tyC0 {\n -ms-grid-row: 1;\n -ms-grid-column: 4;\n grid-area: close;\n -ms-grid-column-align: end;\n justify-self: end;\n margin-left: 30px;\n}\n.main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link__25EN6 .main-module_hide_mobile__37dVg {\n display: none;\n}\n.main-module_gallery__1Ajgx .main-module_loader__mask__2I5iM {\n background: #242424;\n display: flex;\n justify-content: center;\n align-items: center;\n width: 100%;\n}\n.main-module_gallery__1Ajgx .main-module_loader__mask__2I5iM::after {\n content: '';\n background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCI+CiAgICA8ZGVmcz4KICAgICAgICA8cGF0aCBpZD0iYSIgZD0iTTkuNDc0IDBIMTh2OS40NzRIOS40NzR6Ii8+CiAgICA8L2RlZnM+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNERUU0RjciIGQ9Ik05IDE4QTkgOSAwIDEgMSA5IDBhOSA5IDAgMCAxIDAgMTh6bTAtMi42NDNBNi4zNTcgNi4zNTcgMCAxIDAgOSAyLjY0M2E2LjM1NyA2LjM1NyAwIDAgMCAwIDEyLjcxNHoiLz4KICAgICAgICA8bWFzayBpZD0iYiIgZmlsbD0iI2ZmZiI+CiAgICAgICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI2EiLz4KICAgICAgICA8L21hc2s+CiAgICAgICAgPHBhdGggZmlsbD0iIzNDODNFQyIgZD0iTTkgMThBOSA5IDAgMSAxIDkgMGE5IDkgMCAwIDEgMCAxOHptMC0yLjY0M0E2LjM1NyA2LjM1NyAwIDEgMCA5IDIuNjQzYTYuMzU3IDYuMzU3IDAgMCAwIDAgMTIuNzE0eiIgbWFzaz0idXJsKCNiKSIvPgogICAgPC9nPgo8L3N2Zz4=') no-repeat;\n background-size: 30px 30px;\n display: block;\n width: 30px;\n height: 30px;\n -webkit-animation: main-module_rotate__yjo_3 2s linear infinite;\n animation: main-module_rotate__yjo_3 2s linear infinite;\n transform-origin: 50% 50%;\n}\n.main-module_gallery__1Ajgx .main-module_icon__2BB-1 {\n display: inline-block;\n font-family: 'aurora-icons';\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: inherit;\n text-decoration: none;\n position: relative;\n vertical-align: middle;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n.main-module_gallery__1Ajgx .main-module_icon__2BB-1::after {\n content: '';\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n}\n.main-module_gallery__1Ajgx .main-module_icon-close__1bvaY::before {\n content: '\\E90D';\n}\n.main-module_gallery__1Ajgx .main-module_icon-loader__2wviL::before {\n content: '\\E906';\n}\n.main-module_gallery__1Ajgx .main-module_icon-link__rVNQ8::before {\n content: '\\E973';\n}\n.main-module_gallery__1Ajgx .main-module_icon-success__1ltet::before {\n content: '\\E93D';\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow__2lOOE {\n position: relative;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n margin-top: -60px;\n font-size: 19px;\n color: #ffffff;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow__2lOOE::before {\n content: '\\E920';\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container__2jvGl {\n height: 100%;\n width: 52px;\n position: fixed;\n top: 60px;\n background-color: rgba(36, 36, 36, 0.3);\n z-index: 2;\n cursor: pointer;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container_previous__2y-vp {\n left: 0;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container_next__1gy5p {\n right: 0;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container__2jvGl:hover {\n background-color: rgba(36, 36, 36, 0.6);\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow_rotate-180__3tVhZ {\n transform: translate(-50%, -50%) rotate(180deg);\n}\n.main-module_gallery__1Ajgx .main-module_hide__2dq3c {\n display: none !important;\n}\n.main-module_gallery__1Ajgx .main-module_hide_mobile__37dVg {\n display: none;\n}\n.main-module_gallery__1Ajgx .main-module_zoom-in__2kYCX {\n cursor: zoom-in;\n}\n.main-module_gallery__1Ajgx .main-module_zoom-out__2DXiQ {\n cursor: zoom-out;\n}\n.main-module_gallery__1Ajgx .main-module_grabbing__2uCRI {\n cursor: -webkit-grabbing;\n cursor: grabbing;\n}\n.main-module_gallery_mobile__2NF8_ .main-module_gallery__images-container__y3z5v {\n background-color: #242424;\n}\n.main-module_gallery_mobile__2NF8_ .main-module_gallery__images_with-transition__1cAJq {\n transition: transform 0.3s cubic-bezier(0.25, 0.25, 0.25, 1) 0s;\n}\n@media screen and (min-width: 576px) {\n .main-module_gallery__1Ajgx .main-module_gallery-bar__image-description__15_99 {\n display: block;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link_confirmation__2Q0uN {\n min-width: 20rem;\n }\n}\n@media screen and (min-width: 576px) and (max-width: 820px) {\n .main-module_gallery-bar__2jTh6 {\n height: 80px;\n }\n .main-module_gallery-bar__copy-link_confirmation__2Q0uN {\n top: 100px;\n }\n .main-module_gallery__1Ajgx .main-module_icon-arrow-container__2jvGl {\n top: 80px;\n }\n}\n@media screen and (min-width: 820px) {\n .main-module_gallery__1Ajgx .main-module_hide_mobile__37dVg {\n display: block;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__image-close__3tyC0 {\n margin-left: 50px;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link__25EN6 .main-module_hide_mobile__37dVg {\n display: block;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link__25EN6 .main-module_hide_desktop__3M7Iv {\n display: none;\n }\n}\n@-webkit-keyframes main-module_rotate__yjo_3 {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n}\n@keyframes main-module_rotate__yjo_3 {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n}\n";
3
+ var css_248z = "@font-face {\n font-family: 'aurora-icons';\n font-display: swap;\n src: url(https://dcsaascdn.net/fonts/aurora-icons.svg) format('svg'), url(https://dcsaascdn.net/fonts/aurora-icons.ttf) format('truetype'), url(https://dcsaascdn.net/fonts/aurora-icons.woff) format('woff');\n font-weight: normal;\n font-style: normal;\n}\n.main-module_gallery__1Ajgx {\n position: fixed;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n z-index: 1000;\n box-sizing: border-box;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.main-module_gallery__image__1LYNa {\n margin: auto;\n display: block;\n max-width: -webkit-max-content;\n max-width: -moz-max-content;\n max-width: max-content;\n max-height: -webkit-max-content;\n max-height: -moz-max-content;\n max-height: max-content;\n}\n.main-module_gallery__image_max-width__2uWqp {\n width: 100%;\n height: auto;\n}\n.main-module_gallery__image_max-height__3iunQ {\n height: 100%;\n width: auto;\n}\n.main-module_gallery__image_adjusted__Ix20O {\n max-width: 100%;\n max-height: 100%;\n}\n.main-module_gallery__image_max-sizes__w2lwL {\n height: auto;\n width: auto;\n}\n.main-module_gallery__image-container__2uLDK {\n display: flex;\n overflow: auto;\n scroll-behavior: smooth;\n}\n.main-module_gallery__image-container__2uLDK::-webkit-scrollbar {\n width: 7px;\n height: 7px;\n}\n.main-module_gallery__image-container__2uLDK::-webkit-scrollbar-thumb {\n background-color: rgba(0, 0, 0, 0.4);\n}\n.main-module_gallery__images__19e1P {\n display: -ms-grid;\n display: grid;\n height: 100%;\n -ms-grid-rows: 1fr;\n grid-template-rows: 1fr;\n}\n.main-module_gallery__images-container__y3z5v {\n overflow: hidden;\n width: 100%;\n background-color: rgba(255, 255, 255, 0.9);\n}\n.main-module_gallery__images_with-transition__1cAJq {\n transition: transform 0.3s cubic-bezier(0.25, 0.25, 0.75, 1) 0s;\n}\n.main-module_gallery-bar__2jTh6 {\n height: 60px;\n display: -ms-grid;\n display: grid;\n -ms-grid-columns: -webkit-max-content 1fr (-webkit-max-content)[2];\n -ms-grid-columns: max-content 1fr (max-content)[2];\n grid-template-columns: -webkit-max-content 1fr repeat(2, -webkit-max-content);\n grid-template-columns: max-content 1fr repeat(2, max-content);\n grid-template-areas: 'imageNumbers description copyLink close';\n -ms-grid-rows: 1fr;\n grid-template-rows: 1fr;\n align-items: center;\n background-color: #242424;\n color: #ffffff;\n padding: 0 20px;\n position: relative;\n font-size: 13px;\n font-weight: bold;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon__2BB-1 {\n font-size: 16px;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon__2BB-1:hover {\n cursor: pointer;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon_inactive__2QRrA {\n color: #5c657e;\n}\n.main-module_gallery-bar__2jTh6 .main-module_icon_inactive__2QRrA:hover {\n cursor: default;\n}\n.main-module_gallery-bar__image-numbers__2gLMV {\n -ms-grid-row: 1;\n -ms-grid-column: 1;\n grid-area: imageNumbers;\n margin-right: 50px;\n}\n.main-module_gallery-bar__image-description__15_99 {\n -ms-grid-row: 1;\n -ms-grid-column: 2;\n grid-area: description;\n color: #d0e6ff;\n font-weight: normal;\n overflow-wrap: anywhere;\n display: none;\n}\n.main-module_gallery-bar__copy-link__25EN6 {\n -ms-grid-row: 1;\n -ms-grid-column: 3;\n grid-area: copyLink;\n display: flex;\n font-size: 12px;\n border: 2px solid #ffffff;\n border-radius: 3px;\n padding: 6px 10px;\n margin-left: 50px;\n}\n.main-module_gallery-bar__copy-link__25EN6:hover {\n cursor: pointer;\n}\n.main-module_gallery-bar__copy-link__25EN6 .main-module_icon__2BB-1 {\n margin-right: 11px;\n}\n.main-module_gallery-bar__copy-link__25EN6 .main-module_hide_desktop__3M7Iv {\n display: inline-block;\n}\n.main-module_gallery-bar__copy-link_confirmation__2Q0uN {\n position: absolute;\n top: 80px;\n left: 0;\n right: 0;\n margin: 0 auto;\n width: -webkit-max-content;\n width: -moz-max-content;\n width: max-content;\n min-width: 15rem;\n background-color: #d2eec4;\n z-index: 5;\n display: flex;\n align-items: center;\n max-width: 100%;\n padding: 1rem;\n border-radius: 3px;\n color: #5a9986;\n}\n.main-module_gallery-bar__copy-link_confirmation-text__14S1V {\n padding: 0 10px;\n text-align: center;\n min-width: 8rem;\n width: 100%;\n}\n.main-module_gallery-bar__image-close__3tyC0 {\n -ms-grid-row: 1;\n -ms-grid-column: 4;\n grid-area: close;\n -ms-grid-column-align: end;\n justify-self: end;\n margin-left: 30px;\n}\n.main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link__25EN6 .main-module_hide_mobile__37dVg {\n display: none;\n}\n.main-module_gallery__1Ajgx .main-module_loader__mask__2I5iM {\n background: #242424;\n display: flex;\n justify-content: center;\n align-items: center;\n width: 100%;\n}\n.main-module_gallery__1Ajgx .main-module_loader__mask__2I5iM::after {\n content: '';\n background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCI+CiAgICA8ZGVmcz4KICAgICAgICA8cGF0aCBpZD0iYSIgZD0iTTkuNDc0IDBIMTh2OS40NzRIOS40NzR6Ii8+CiAgICA8L2RlZnM+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGZpbGw9IiNERUU0RjciIGQ9Ik05IDE4QTkgOSAwIDEgMSA5IDBhOSA5IDAgMCAxIDAgMTh6bTAtMi42NDNBNi4zNTcgNi4zNTcgMCAxIDAgOSAyLjY0M2E2LjM1NyA2LjM1NyAwIDAgMCAwIDEyLjcxNHoiLz4KICAgICAgICA8bWFzayBpZD0iYiIgZmlsbD0iI2ZmZiI+CiAgICAgICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI2EiLz4KICAgICAgICA8L21hc2s+CiAgICAgICAgPHBhdGggZmlsbD0iIzNDODNFQyIgZD0iTTkgMThBOSA5IDAgMSAxIDkgMGE5IDkgMCAwIDEgMCAxOHptMC0yLjY0M0E2LjM1NyA2LjM1NyAwIDEgMCA5IDIuNjQzYTYuMzU3IDYuMzU3IDAgMCAwIDAgMTIuNzE0eiIgbWFzaz0idXJsKCNiKSIvPgogICAgPC9nPgo8L3N2Zz4=') no-repeat;\n background-size: 30px 30px;\n display: block;\n width: 30px;\n height: 30px;\n -webkit-animation: main-module_rotate__yjo_3 2s linear infinite;\n animation: main-module_rotate__yjo_3 2s linear infinite;\n transform-origin: 50% 50%;\n}\n.main-module_gallery__1Ajgx .main-module_icon__2BB-1 {\n display: inline-block;\n font-family: 'aurora-icons';\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: inherit;\n text-decoration: none;\n position: relative;\n vertical-align: middle;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n.main-module_gallery__1Ajgx .main-module_icon__2BB-1::after {\n content: '';\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n}\n.main-module_gallery__1Ajgx .main-module_icon-close__1bvaY::before {\n content: '\\E90D';\n}\n.main-module_gallery__1Ajgx .main-module_icon-loader__2wviL::before {\n content: '\\E906';\n}\n.main-module_gallery__1Ajgx .main-module_icon-link__rVNQ8::before {\n content: '\\E973';\n}\n.main-module_gallery__1Ajgx .main-module_icon-success__1ltet::before {\n content: '\\E93D';\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow__2lOOE {\n position: relative;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n margin-top: -60px;\n font-size: 19px;\n color: #ffffff;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow__2lOOE::before {\n content: '\\E920';\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container__2jvGl {\n height: 100%;\n width: 52px;\n position: fixed;\n top: 60px;\n background-color: rgba(36, 36, 36, 0.3);\n z-index: 2;\n cursor: pointer;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container_previous__2y-vp {\n left: 0;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container_next__1gy5p {\n right: 0;\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow-container__2jvGl:hover {\n background-color: rgba(36, 36, 36, 0.6);\n}\n.main-module_gallery__1Ajgx .main-module_icon-arrow_rotate-180__3tVhZ {\n transform: translate(-50%, -50%) rotate(180deg);\n}\n.main-module_gallery__1Ajgx .main-module_hide__2dq3c {\n display: none !important;\n}\n.main-module_gallery__1Ajgx .main-module_hide_mobile__37dVg {\n display: none;\n}\n.main-module_gallery__1Ajgx .main-module_zoom-in__2kYCX {\n cursor: zoom-in;\n}\n.main-module_gallery__1Ajgx .main-module_zoom-out__2DXiQ {\n cursor: zoom-out;\n}\n.main-module_gallery__1Ajgx .main-module_grabbing__2uCRI {\n cursor: -webkit-grabbing;\n cursor: grabbing;\n}\n.main-module_gallery_mobile__2NF8_ .main-module_gallery__images-container__y3z5v {\n background-color: #242424;\n}\n.main-module_gallery_mobile__2NF8_ .main-module_gallery__images_with-transition__1cAJq {\n transition: transform 0.3s cubic-bezier(0.25, 0.25, 0.25, 1) 0s;\n}\n@media screen and (min-width: 576px) {\n .main-module_gallery__1Ajgx .main-module_gallery-bar__image-description__15_99 {\n display: block;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link_confirmation__2Q0uN {\n min-width: 20rem;\n }\n}\n@media screen and (min-width: 576px) and (max-width: 820px) {\n .main-module_gallery-bar__2jTh6 {\n height: 80px;\n }\n .main-module_gallery-bar__copy-link_confirmation__2Q0uN {\n top: 100px;\n }\n .main-module_gallery__1Ajgx .main-module_icon-arrow-container__2jvGl {\n top: 80px;\n }\n}\n@media screen and (min-width: 820px) {\n .main-module_gallery__1Ajgx .main-module_hide_mobile__37dVg {\n display: block;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__image-close__3tyC0 {\n margin-left: 50px;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link__25EN6 .main-module_hide_mobile__37dVg {\n display: block;\n }\n .main-module_gallery__1Ajgx .main-module_gallery-bar__copy-link__25EN6 .main-module_hide_desktop__3M7Iv {\n display: none;\n }\n}\n@-webkit-keyframes main-module_rotate__yjo_3 {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n}\n@keyframes main-module_rotate__yjo_3 {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n}\n";
4
4
  var cssClasses = {
5
5
  "gallery": "main-module_gallery__1Ajgx",
6
6
  "gallery__image": "main-module_gallery__image__1LYNa",
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@dreamcommerce/aurora",
3
3
  "packageManager": "yarn@3.2.0",
4
4
  "sideEffects": false,
5
- "version": "2.27.19-3",
5
+ "version": "2.27.19-5",
6
6
  "description": "aurora",
7
7
  "author": "k0ssak",
8
8
  "license": "MIT",